行内元素:2#3#5#8
块元素:1#4#6#7
行内块元素:无
文本样式处理:
```css
p, li, h, div {
display: block;
/* 块元素 */
}
img, i, span, a {
display: inline;
/* 行内元素 */
}
/* 文字样式 */
color: #989898;
font-family: "微软雅黑";
font-size: 2rem;
text-shadow: -2px 0px gray, 2px 0px gray;
/* 左侧阴影2px,右侧阴影=2px,颜色为灰色 */
text-decoration: underline;
text-decoration-color: red;
text-decoration-style: wavy;
/* 下方加红色波浪线 */
```