文本属性
属性 | 表示 | 注意点 |
---|
color | 文字颜色 | 通常用16进制 |
text-align | 文本对齐 | 可以设定水平的对齐方式 |
text-indent | 文本缩进 | 通常段落首行缩进2个字的距离 text-indent:2em; |
text-decoration | 文本修饰 | 添加下划线 underline 取消下划线 none |
line-height | 行高 | 字的大小加上上下的空白等于行高 |
代码语言:javascript
复制body{
text-align: left;
width: 760px;
line-height: 25px;
text-indent: 2em;
}