小码哥的IT人生

CSS text-decoration-line 属性 详解

css3基础 2022-07-14 17:33:45小码哥的IT人生shichen

CSS text-decoration-line 属性

定义和用法

text-decoration-line 属性设置要使用哪种文本装饰的类型(下划线、上划线、穿线)。

提示:同时请参阅 text-decoration 属性,它是 text-decoration-line、text-decoration-style 以及 text-decoration-color 的简写属性。

注释:您还可以组合多个值,比如 underline 和 overline,在文本上下方同时显示线条。

另请参阅:

CSS 教程:CSS 文本

HTML DOM 参考手册:textDecorationLine 属性

实例

设置不同的 text-decoration 线条类型:

div.a {
  text-decoration-line: overline;
}
div.b {
  text-decoration-line: underline;
}
div.c {
  text-decoration-line: line-through;
}
div.d {
  text-decoration-line: overline underline;
}

 

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<head>
<style>
div.a {
   -webkit-text-decoration-line: overline; /* Safari */
   text-decoration-line: overline;
}
div.b {
   -webkit-text-decoration-line: underline; /* Safari */
   text-decoration-line: underline;
}
div.c {
   -webkit-text-decoration-line: line-through; /* Safari */
   text-decoration-line: line-through;
}
div.d {
   -webkit-text-decoration-line: overline underline; /* Safari */
   text-decoration-line: overline underline;
}
</style>
</head>
<body>
<h1>text-decoration-line 属性</h1>
<div class="a">This is some text with a line on top.</div>
<br>
<div class="b">This is some text with an underline.</div>
<br>
<div class="c">This is some text with a line-through.</div>
<br>
<div class="d">This is some text with an overline and an underline.</div>
<p><b>注释:</b>版本 79 之前的 Edge 不支持 text-decoration-line 属性,Safari 只支持 -webkit- 前缀。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

CSS 语法

text-decoration-line: none|underline|overline|line-through|initial|inherit;

属性值

描述
none 默认值。规定 text-decoration 没有线条。
underline 规定在文本下方显示线条。
overline 规定在文本上方显示线条。
line-through 规定显示横穿文本的线条。
initial 将此属性设置为其默认值。参阅 initial
inherit 从其父元素继承此属性。参阅 inherit

技术细节

默认值: none
继承:
动画制作: 不支持。请参阅:动画相关属性
版本: CSS3
JavaScript 语法: object.style.textDecorationLine="overline"

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

带 -webkit- 或 -moz- 的数字表示使用前缀的首个版本。

Chrome IE / Edge Firefox Safari Opera
57.0 79.0 36.0
6.0 -moz-
12.1
7.1 -webkit-
44.0

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024