CSS⽂本实例
1、设置⽂本的颜⾊
color:red;
color:#00ff00
color:rgb(0,0,255)
2、增加或减少字符间距
letter-spacing:-0.5em
letter-spacing:20px
3、使⽤百分⽐值来设置段落中的⾏间距。
line-height:90%
line-height: 30px
line-height: 2
4、对齐⽂本
text-align: center
5、向⽂本添加修饰
text-decoration:overline;
text-decoration:line-through;
text-decoration:underline;
text-decoration:blink;
text-decoration:none
6、缩进⽂本⾸⾏
注意:⼀般来说,可以为所有块级元素应⽤ text-indent,但⽆法将该属性应⽤于⾏内元素,图像之类
的替换元素上也⽆法应⽤ text-indent 属性。不过,如果⼀个块级元素(⽐如段落)的⾸⾏中有⼀个图像,它会随该⾏的其余⽂本移动。
提⽰:如果想把⼀个⾏内元素的第⼀⾏“缩进”,可以⽤左内边距或外边距创造这种效果。
text-indent: 1cm
7、控制⽂本中的字母
text-transform:uppercase
text-transform:lowercase
text-transform:capitalize
8、禁⽌在元素中的⽂本折⾏,控制不换⾏
white-space: nowrap
text align center9、增加段落中单词间的距离
word-spacing: 30px;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。