CSS text-decoration-style 屬性
示例
設定不同型別的文字裝飾樣式
div.a {
text-decoration-line: underline;
text-decoration-style: solid;
}
div.b {
text-decoration-line: underline;
text-decoration-style: wavy;
}
div.c {
text-decoration-line: underline;
text-decoration-style: double;
}
div.d {
text-decoration-line: overline underline;
text-decoration-style: wavy;
}
自己動手試一試 »
定義和用法
text-decoration-style
屬性設定文字裝飾的樣式(如實線、波浪線、點狀線、虛線、雙線)。
提示:另請參閱 text-decoration 屬性,它是 text-decoration-line、text-decoration-style、text-decoration-color 和 text-decoration-thickness 的簡寫屬性。
瀏覽器支援
表中的數字指定了完全支援該屬性的第一個瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
text-decoration-style | 57 | 79 | 36 | 12.1 | 44 |
CSS 語法
text-decoration-style: solid|double|dotted|dashed|wavy|initial|inherit;
屬性值
值 | 描述 | 試一試 |
---|---|---|
solid | 預設值。線條將顯示為單線 | 演示 ❯ |
double | 線條將顯示為雙線 | 演示 ❯ |
dotted | 線條將顯示為點狀線 | 演示 ❯ |
dashed | 線條將顯示為虛線 | 演示 ❯ |
wavy | 線條將顯示為波浪線 | 演示 ❯ |
initial | 將此屬性設定為其預設值。閱讀關於initial | |
inherit | 從其父元素繼承此屬性。閱讀關於inherit |
相關頁面
CSS 教程:CSS 文字裝飾
HTML DOM 參考:textDecorationStyle 屬性