CSS 文字装饰
示例
该text-decoration属性用于设置或删除文本装饰。
h1 { text-decoration: none; }
h2 { text-decoration: overline; }
h3 { text-decoration: line-through; }
h4 { text-decoration: underline; }text-decoration可以与text-decoration-style和text-decoration-color结合使用,作为简写属性:
.title { text-decoration: underline dotted blue; }这是的简写版本
.title {
text-decoration-style: dotted;
text-decoration-line: underline;
text-decoration-color: blue;
}应该注意的是,以下属性仅在Firefox中受支持
文字装饰颜色
文字装饰线
文字装饰风格
文本装饰跳过