Document
h1 {
color: crimson;
/* 设置元素水平对齐方式 */
text-align: center;
/* 设置首行文本的缩进 */
text-indent: 50px;
/* 行高的作用在于,行高的大小和高度一致 */
line-height: 100px;
height: 100px;
background-color: darkkhaki;
}
a{
color: deeppink;
/* 设置文本的装饰 */
/* text-decoration: none; */
/* text-decoration:overline; 上划线 */
/* text-decoration:underline; 默认的下划线 */
}
</style>