共计 422 个字符,预计需要花费 2 分钟才能阅读完成。
css 字体属性:
font-family 是字体 | |
font-weight=700(bold),=400(默认:normal)(100-900) 相当于 strong 标签 理论开发中应用数字更好 | |
font-style=normal 将歪斜转为失常 =italic 变歪斜 | |
font-size 字体大小 |
#lan { | |
font-family: "微软雅黑"; | |
font-size: 10px; | |
font-weight: 700; | |
font-style: italic; | |
/* 复合属性应用一行来写 程序不能颠倒 前 2 个能够省略,后 2 个不能够 | |
font:font-style font-weight font-size/line-height font-family;*/ | |
font-size/line-height | |
/*font-size/line-height: 10px/1.5 代表行高是字体的 1.5 倍 */ | |
font:italic 700 10px/10px '微软雅黑'; | |
font: 10px/10px '微软雅黑'; | |
} |
正文完