1.CSS特性:
>继承性:父元素的部分样式会被子元素继承
>特殊性 :根据权值计算优先级——标签的权值为1,类选择符的权值为10,ID选择符的权值最高为100。
>层叠性:后面的会覆盖前面的样式
>重要性:!important,会具有最高权值
2.CSS格式化排版:
>字体 font-family
>字号 font-size
>颜色 color
>粗体 font-weight: bold
>斜体 font-style: italic
>下划线 text-decoration: underline
>删除线 text-decoration: line-through
>段落缩进 text-indent: 2em (文字的2倍大小)
>行间距(行高) line-height: 1.5em
>汉字间距、字母间距 letter-spacing
>单词间距 word-spacing
>块状元素中的文本、图片对齐样式 text-align: center(left/right)