1
2
3
4
5
6

知识点:文本属性

发布时间:2021-07-10 22:00   发布人:侯素玲   浏览次数:1816


文本属性

    (1)color:文本颜色   RGB颜色值演示

    (2)text-align:水平对齐方式

    (3)text-indent:首行缩进

    (4)text-decoration:文本装饰

    (5)line-height:行间距

    (6)text-transform:文本转换

    (7)letter-spacing:字间距

    (8)word-spacing:单词间距

    (9)text-shadow:阴影效果

   (10)text-overflow: 标示对象内溢出文本

代码示例

a{

color:#333;

text-decoration:none

}

.copyright{

font-size:12px;

line-height:28px;

color:#838383;

text-align:center;

 }