font-family 设置字体
font-family: 'Courier New', Courier, monospace;
设置多个字体的意思是若用户电脑未安装第一种字体,则执行第二种,以此类推
font-size字号大小
font-weight字体粗细
normal 默认值; bold 加粗; 100-900 400等于normal,700等于bold
font-style字体样式
normal 默认值;italic 斜体
font 复合性写法
<style>
body{
font: font-style font-weight font-size/line-height font-family;
};
</style>
属性值不能更换顺序,不需要的属性可以省略(取默认值),但必须保留 font-size 和 font-family 属性,否则 font 属性将不起作用
<style>
body {
font: italic 700 16px 'Courier New';
}
</style>
初学者,见解不足,如有错误请指出