css文本

发布时间 2023-04-19 10:11:37作者: 挖洞404

1、color

color:red;
  • 设置字体颜色

2、text-align

text-align:center;
  • 设置文本的水平对齐方式,可选项:center居中对齐,right向右对齐,left向左对齐,justify两端对齐

3、文本修饰

text-decoration:none;
  • 可选项:overline上划线,line-through删除线,underline下划线,none没有

4、大小写转换

text-transform:uppercase;
  • 可选项:uppercase字母全大写,lowercase字母全小写,capitalize句子中各单词首字符大写

5、文本缩进

text-indent:50px
  • 段落的首行进行缩进

6、其他文本效果