font-family 字体
font-size 字体大小
font-weigth 字体粗细
标题标签中的字体默认加粗
- 不加粗 font-weight:normal;等价于font-weight
- 加粗 font-weigth:bold;等价于 font-weight:700;(注意700后面不加单位)
字体符合属性:font :font-style font-weight font-size/line-height font-family(顺序不能变,中间用空格隔开)
<!DOCTYPE html>
<html>
<head>
<meter></meter>
<title>css字体属性</title>
<style >
div {
/*符合属性,顺序不能变,不需要设置的属性可以省略(取默认值)
但必须保留font-size和font-family属性,否则属性将不起作用*/
/*font:font-style font-weight font-size/line-height font-family;*/
font:italic 700 16px 'microsoft yahei';
}
</style>
</head>
<body>
<div>三生三世十里桃花,一心一意百行代码</div>
</body>
</html>