天才一秒记住【梧桐文学】地址:https://www.wtwx.net
字母间距:letter-spacing
单词间距:word-spacing(通过空格识别词)
属性值为像素(px),正值让间距增大,负值让间距缩小。
代码格式:div{
font-size:30px;
}
.atguigu2{
letter-spacing:20px;
}
.atguigu3{
word-spacing:20px;
}
第一百节CSS_常用文本属性_文本修饰
属性名:text-decoration
作用:控制文本的各种装饰线。
可选值:
1.none:无装饰线(常用)
2.underline:下划线(常用)
3.overline:上划线
4.line-through:删除线
可搭配如下值使用:
1.dotted:虚线
2.wavy:波浪线
3.也可以指定颜色。
举例:.atguigu1{
text-decoration:overlinedottedgreen;
}
.atguigu2{
text-decoration:underlinewavyred;
}
.atguigu3{
text-decoration:line-through;
}
本章未完,请点击下一章继续阅读!若浏览器显示没有新章节了,请尝试点击右上角↗️或右下角↘️的菜单,退出阅读模式即可,谢谢!