[TOC=1,5] >[success] ## **一、属性预览表** | 属性 |解释 | | --- | --- | |` font-size:16px; ` | 文字大小 | | ` Font-weight: 700` | 值从100-900,文字粗细,不推荐使用font-weight:bold; | | `Font-family:微软雅黑 ` |文本的字体 | | `Font-style: normal | italic;` | normal 默认值 italic 斜体 | | ` line-height:` | 行高 | <br> >[success] ## **二、属性连写方式** `font: font-style font-weight font-size/line-height font-family;` #### **备注**: ``` font:后边写属性的值。一定按照书写顺序。 文本属性连写文字大小和字体为必写项。 ``` #### **案例** `Font:italic 700 16px/40px 微软雅黑;` <br> >[success] ## **三、文本字体表达方式** 1.直接写中文名称 ![](https://box.kancloud.cn/c5e5d8cdf405a406e48680cd28795f0f_403x121.png) 3.英文方式 ![](https://box.kancloud.cn/9ab5c7e90244cc19dc952dd0f2c043e6_523x114.png) 3.unicode 编码 ![](https://box.kancloud.cn/1321d15805f4157965952acf63c1b313_424x437.png) 第一步:f12 第二步:找到console 第三步:输入escape(“宋体”) 注意英文的括号和双引号。 ![](https://box.kancloud.cn/dfc732dcb8424df373cf56a5ee3a05d8_566x213.png)