CSS text-decoration 屬性
CSS text-decoration 屬性
實例
設置h1,h2,h3和h4元素文本裝飾:
h1 {text-decoration:overline}
h2 {text-decoration:line-through}
h3 {text-decoration:underline}
h2 {text-decoration:line-through}
h3 {text-decoration:underline}
屬性定義及使用說明
text-decoration 屬性規定添加到文本的修飾。
注意:修飾的顏色由 "color" 屬性設置。
默認值: | none |
---|---|
繼承: | no |
版本: | CSS1 |
JavaScript 語法: | object.style.textDecoration="overline" |
瀏覽器支持
表格中的數字表示支持該屬性的第一個瀏覽器版本號。
屬性 | |||||
---|---|---|---|---|---|
text-decoration | 1.0 | 3.0 | 1.0 | 1.0 | 3.5 |
屬性值
值 | 描述 |
---|---|
none | 默認。定義標準的文本。 |
underline | 定義文本下的一條線。 |
overline | 定義文本上的一條線。 |
line-through | 定義穿過文本下的一條線。 |
blink | 定義閃爍的文本。 |
inherit | 規定應該從父元素繼承 text-decoration 屬性的值。 |
相關文章
CSS 教程: CSS 文本