在css中如何用text-decoration装饰文字
发布时间:2025-10-19 13:58
发布者:网络
浏览次数:text-decoration用于设置文本装饰效果,如underline下划线、line-through删除线、overline上划线,支持颜色、样式、粗细等属性,可简写为text-decoration: line style color thickness,常用于去除链接下划线或标注价格删除线。

在CSS中,text-decoration 属性用于为文本添加装饰效果,比如下划线、上划线、删除线等。它是一个简写属性,可以分别设置线条的类型、颜色和样式位置。
基本语法
text-decoration: none | underline | overline | line-through | blink;- none:默认值,无装饰线(常用于去除链接的下划线)
- underline:文字下方加线
- overline:文字上方加线
- line-through:穿过文字中间的删除线
- blink:让文本闪烁(大多数浏览器已不再支持)
示例:
.underline { text-decoration: underline; } .delete { text-decoration: line-through; } .top-line { text-decoration: overline; } .no-underline { text-decoration: none; }扩展属性(CSS3)
现代浏览器支持更细粒度的控制,你可以使用以下子属性:- text-decoration-line:指定装饰线的位置(underline, overline, line-through)
- text-decoration-color:设置线条颜色
- text-decoration-style:设置线条样式(solid, double, dotted, dashed, w*y)
- text-decoration-thickness:设置线条粗细
示例:
.w*y-red { text-decoration-line: underline; text-
decoration-color: red;
text-decoration-style: w*y;
}
.thick-blue {
text-decoration: underline blue;
text-decoration-thickness: 2px;
}
简写用法
你可以把多个值写在 text-decoration 一行中:text-decoration: underline red w*y 2px;
Visla
AI视频生成器,快速轻松地将您的想法转化为视觉上令人惊叹的视频。
100
查看详情
立即学习“前端免费学习笔记(深入)”;
顺序不限,但推荐按 “line style color thickness” 的逻辑书写。
常见应用场景
- 去除超链接默认下划线:a { text-decoration: none; } - 显示删除价:.old-price { text-decoration: line-through; } - 强调标题或关键词:.highlight { text-decoration: overline underline; }(可同时应用多条线)基本上就这些。text-decoration 简单实用,配合颜色和样式能让文本更有表现力。
以上就是在css中如何用text-decoration装饰文字的详细内容,更多请关注其它相关文章!
# css
# css3
# 浏览器
# red
# 关键词
# 下划线
# 如何用
# 你可以
# 中不
# 您的
# 两种类型
# 选择器
# 多个
# 它是
# 秦皇岛谷歌seo
# 团结湖商城网站建设
# 推广类网站类型
# 始兴政协专栏网站建设
# 小说素材推广网站有哪些
# 安阳搜索引擎关键词排名
# 椒江seo收录
# 临沂官网网站建设
# 软文营销推广公司排行榜
# 江苏seo公司司




