Style textDecorationLine 屬性
定義和用法
textDecorationLine 屬性設(shè)置或返回文本修飾要使用的線條類型。
注意:您也可以使用 textDecoration 屬性設(shè)置 textDecorationLine。textDecoration 屬性是 textDecorationLine、textDecorationStyle 和 textDecorationColor 屬性的速記屬性。
注意:您也可以同時使用多個值,比如 underline 和 overline,來在文本的上方和下方都顯示線條。
瀏覽器支持
幾乎所有的主流瀏覽器都不支持 textDecorationLine 屬性。
Firefox 支持另一個可替代該屬性的屬性,即 MozTextDecorationLine 屬性。
語法
返回 textDecorationLine 屬性:
object.style.textDecorationLine
設(shè)置 textDecorationLine 屬性:
object.style.textDecorationLine="none|underline|overline|line-through|initial|inherit"
屬性值
值 | 描述 |
---|---|
none | 默認值。規(guī)定文本修飾沒有線條。 |
underline | 規(guī)定文本的下方將顯示一條線。 |
overline | 規(guī)定文本的上方將顯示一條線。 |
line-through | 規(guī)定文本的中間將顯示一條線。 |
initial | 設(shè)置該屬性為它的默認值。請參閱 initial。 |
inherit | 從父元素繼承該屬性。請參閱 inherit。 |
技術(shù)細節(jié)
默認值: | none |
---|---|
返回值: | 字符串,表示元素的 text-decoration-line 屬性。 |
CSS 版本 | CSS3 |
相關(guān)文章
CSS 參考手冊:text-decoration-line 屬性
更多建議: