天池像两个鸡蛋融合在一起,上面大雾迷蒙,更添加了几分神秘的色彩。而且天池在长白山的最高点,所以海拔很高,就像耸入云端似的,都是大雾,所以被称为天池。旁边还有火山,火山的顶上灰蒙蒙的,全都被火山灰覆盖了。那里还有很多火山石,有的像狮子,有的像大象,有的像绵羊……数也数不清。
font-size:18px;:设置字号
color:#093:设置字色
font-family:'宋体';:设置字体
(要尽量使用通用的字体,就是用大家电脑上一般都有的字体,常用的是中文字体是宋体英文字体是arial)
设置字体的时候将英文字体设置在前,中文设置在后
如果想用比较特殊的字体,可以将其转换为图片
line-height:150%;:设置行与行之间的距离
font-weight:bold:设置字体的粗细(粗:bold 正常:normal)
font—style:设置字体样式(normal正常,italic斜体)
text-decoration:修饰文字(none正常,underline下划线,overline上划线,line-through删除线 blink闪烁(只支持IE6,7,搜狐))
letter-spacing:5px:字符间距(normal默认,length长度单位)
word-spacing:5px:单词间距(normal默认,length长度单位
复制代码
代码如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a rel="nofollow noopener noreferrer" href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a rel="nofollow noopener noreferrer" href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS字体控制</title>
<style type="text/css">
body{font-size:18px; color:#093; font-family:Arial, '汉仪行楷简'; line-height:300%; font-weight:bold}
div{width:400; height:50; background:#999; word-spacing:5em;}
h1{font-weight:normal;font-style:italic; text-decoration:underline; letter-spacing:5px; word-spacing:60px;}
</style>
</head></p> <p><body>
<h1>主持召开<span>院</span>会</h1>
<h2>设置行与行之间的距离</h2>
设置行与行之间的距离
<div>设置行与行之间的距离</div>
</body>
</html>
到此这篇关于css好代码教程之css设置字体颜色就介绍到这了。人得自知,既然没种去死,那就找点乐子活下去。更多相关css好代码教程之css设置字体颜色内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!