CSS 中设置单个文字样式可以通过 text-decoration 属性实现,可为文本添加下划线、删除线、上划线或波浪线,语法为:text-decoration: none | underline | overline | line-through | wavy;。

CSS 中设置单个文字样式
在 CSS 中,您可以使用 text-decoration 属性来设置单个文字的样式。此属性允许您为文本添加下划线、删除线、上划线或波浪线。
语法:
<code class="css">text-decoration: none | underline | overline | line-through | wavy;</code>
取值:
立即学习“前端免费学习笔记(深入)”;
- none:删除所有文本装饰。
- underline:在文本下方添加下划线。
- overline:在文本上方添加上划线。
- line-through:在文本中间添加删除线。
- wavy:在文本下方添加一条波浪线。
使用示例:
要为特定文本元素添加下划线,可以使用以下代码:
<code class="css">.my-text {
text-decoration: underline;
}</code>要移除文本元素的删除线,可以使用以下代码:
<code class="css">.my-text {
text-decoration: none;
}</code>其他 CSS 属性:
除 text-decoration 属性外,CSS 还提供了一些其他属性来控制文本样式,例如:
- color:设置文本颜色。
- font-family:设置字体系列。
- font-size:设置字体大小。
- font-weight:设置字体粗细。










