.text { text-decoration: line-through; /* 添加删除线 */ } .link { text-decoration: underline; /* 添加下划线 */ }
通过text-decoration属性,可以设置字体的修饰线条样式,包括下划线、删除线、波浪线等。大家常用的加横线的样式有删除线和下划线。
除了text-decoration属性,还可以使用border-bottom属性实现下划线效果,例如:
.link { border-bottom: 1px solid #000; /* 添加1像素黑色下划线 */ }
使用border-bottom属性比text-decoration更灵活,可以自行设置下划线的颜色、样式和粗细,但是删除线的效果只能通过text-decoration属性实现。