css font-weight字号使用方法

语法:

font-weight : normal | bold | bolder | lighter | number

参数:

normal : 正常的字体。相当于number为400。声明此值将取消之前任何设置
bold : 粗体。相当于number为700。也相当于b对象的作用
bolder : IE5+ 特粗体
lighter : IE5+ 细体
number : IE5+ 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900

说明:

设置或检索对象中的文本字体的粗细。
作用由用户端系统安装的字体的特定字体变量映射决定。系统选择最近的匹配。也就是说,用户可能看不到不同值之间的差异。
对应的脚本特性为fontWeight。请参阅我编写的其他书目。

示例:

span { font-weight:800; }

分类CSS字体Foot相关推荐:

css 字体 Font属性 css font字体使用方法 css color颜色使用方法 css font-family使用方法 css font-size字体大小使用 css font-size-adjust使用方法 css font-stretch使用方法 css font-style使用方法 css font-weight字号使用方法 css text-decoration文字划线使用方法 css text-underline-position使用方法 css text-shadow文字阴影使用方法 css font-variant设置或检索对象中的文本是否为小型的大写字母 css text-transform检索或设置对象中的文本的大小写 css line-height文字行高使用 css letter-spacing设置文字间隔 css word-spacing单词之间的空格