text-decoration-line - CSS(层叠样式表) 编辑

CSS 属性 text-decoration-line 用于设置元素中的文本的修饰类型。当要设置多个线修饰属性时,用 text-decoration 简写属性会比分别写多个属性更方便。

/* Keyword values */
text-decoration-line: none;
text-decoration-line: underline;
text-decoration-line: overline;
text-decoration-line: line-through;
text-decoration-line: blink;
text-decoration-line: underline overline;               /* Two decoration lines */
text-decoration-line: overline underline line-through;  /* Multiple decoration lines */

/* Global values */
text-decoration-line: inherit;
text-decoration-line: initial;
text-decoration-line: unset;
初始值none
适用元素all elements. It also applies to ::first-letter and ::first-line.
是否是继承属性
计算值as specified
Animation typediscrete

语法

text-decoration-line 属性可以设置为 none, 或者一个及多个用空格分隔的下列值。

none
表示没有文本修饰效果。
underline
在文本的下方有一条修饰线。
overline
在文本的上方有一条修饰线。
line-through
有一条贯穿文本中间的修饰线。
blink
文本闪烁(文本交替处于显示与隐藏状态)。客户代理都一致没有实现文本闪烁效果。考虑到为了支持使用 CSS 动画,该值也不宜使用

格式化语法

none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error

示例

<p class="wavy">Here's some text with wavy red underline!</p>
<p class="both">This text has lines both above and below it.</p>
.wavy {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: red;
}

.both {
  text-decoration-line: underline overline;
}

规范

规范状态备注
CSS Text Decoration Module Level 3
text-decoration-line
Candidate Recommendation

初次定义。text-decoration 属性同时变成了定义多个相关属性的简写形式。

浏览器兼容性

BCD tables only load in the browser

 

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

 

另请参阅

  • 当要设置多个线修饰属性时,用 text-decoration 简写属性会比分别写多个属性更方便。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:112 次

字数:6118

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文