css font属性
常用的css属性、 color 字体颜色 属性值 : 颜色单词 颜色 16 进制标示方法 #fffffff; rgb() r 代表 red g 代表 green b 代表 blue Rgb 中的值 0-255 之间的任意数字 font的特性 1. font-family 字体系列 字型 属性值 “微软雅黑” 2. font-style 字体样式 Normal 默认值 标准的字体 3. Italic 斜体 4. font-weight 字体的粗细 属性值 normal==400 400 以下是细 400 以上是加粗。 5. font-variant 将字母变成大写 属性值 normal 默认 small-caps 转变成大写 f ont的简写 可设置的属性是(按顺序): "font-style font-variant font-weight font-size/line-height font-family" font-size和font-family的值是必需的。如果缺少了其他值,默认值将被插入,如果有默认值的话。 来源: https://www.cnblogs.com/wanglei2/p/11884849.html