/** 文本 */ h4{ text-align:center;/*水平居中*/ text-align: justify;/*每一行被展开为宽度相等,左,右外边距是对齐*/ } h4 a{ text-decoration: underline red;/*装饰文本*/ } /*大小写转换*/ h4 a {text-transform:uppercase;} h4 a.lowercase {text-transform:lowercase;} h4 a.capitalize {text-transform:capitalize;} /*文本缩进*/ h4 a{text-indent:50px;}