CSS的Text属性可以改变页面中
1、文本的颜色(color)、
2、字符间距(word-spacing )
属性可以改变字(单词)之间的标准间隔。其默认值 normal 与设置值为 0 是一样的
p
{
word-spacing:30px;
}
3、对齐文本、(text-align)
4、装饰文本、(text-decoration) 属性用来设置或删除文本的装饰。
从设计的角度看 text-decoration属性主要是用来删除链接的下划线:a {text-decoration:none;}
其他装饰
h1 {text-decoration:overline;}
h2 {text-decoration:line-through;}
h3 {text-decoration:underline;}
5、文本转换(text-transform)
文本转换属性是用来指定在一个文本中的大写和小写字母。
可用于所有字句变成大写或小写字母,或每个单词的首字母大写。
p.uppercase {text-transform:uppercase;}
p.lowercase {text-transform:lowercase;}
p.capitalize {text-transform:capitalize;}
6、文本缩进( text-indent)
属性是用来指定文本的第一行的缩进。
CSS 提供了 text-indent 属性,该属性可以方便地实现文本缩进。
通过使用 text-indent 属性,所有元素的第一行都可以缩进一个给定的长度。
p {text-indent:50px;}
原文更多参数:https://www.w3cschool.cn/css/css-text.html