一、常见的文本样式:
font-size:文字大小(一般均为偶数);
font-family:"STKaiti","simHei","Microsoft YaHei","simSun","Times New Roman","Arial";
color:英文/十六进制/rgb;
line-height:行高(具体的数值);
text-align:文本对齐方式(left/center/right);
text-indent:首行缩进(em缩进字符 或 px缩进具体数值);
font-weight:文字着重(normal/bold/bolder/100-900);
font-style:文字倾斜(normal/italic/oblique);
text-decoration:文字修饰(none/underline/line-through/overline)
letter-spacing:字母间距(具体的数值);
word-spacing:单词间距(以空格为解析单位);
以上文本样式能够在嵌套层级中继承;
二、常见的复合属性:
background: background-color background-image background-position background-repeat;
border: border-width border-style border-color;
padding: (四种情况);
margin: (四种情况);
font: font-style font-weight font-size/line-height font-family;
三、常用的17个属性:
width: 宽度
height: 高度
background: 背景;
border: 边框;
padding: 内边距;
margin: 外边距;
font-size: 文字大小;
font-family: 字体;
color: 文字颜色;
line-height: 行高;
text-align: 文本对齐方式;
text-indent: 首行缩进;
font-weight: 文字着重;
font-style: 文字样式;
text-decoration: 文本修饰;
letter-spacing: 字母间距;
word-spacing: 单词间距;