border-style屬性用來設定元素邊框的樣式,可以同時為一個元素的四個邊框設定樣式,或是單獨設定邊框樣式。只有當該屬性的值不是 none 時邊框才可能出現。
css border-style屬性怎麼用?
border-style屬性用於設定元素所有邊框的樣式,或單獨為各邊設定邊框樣式。它可以有一到四個值,例:
p.one {border-style:dotted dashed solid double;} p.two {border-style:dotted solid double;} p.three {border-style:dotted solid;} p.four {border-style:dotted;}
效果圖:
說明:只有當這個值不是none 時邊框才可能出現。
可以設定的屬性值:
none:定義無邊框。
hidden:與 "none" 相同。不過應用於表時除外,對於表,hidden 用於解決邊框衝突。
dotted:定義點狀邊框。在大多數瀏覽器中呈現為實線。
dashed:定義虛線。在大多數瀏覽器中呈現為實線。
solid:定義實線。
double:定義雙線。雙線的寬度等於 border-width 的值。
groove:定義 3D 凹槽邊框。其效果取決於 border-color 的值。
ridge:定義 3D 壟狀邊框。其效果取決於 border-color 的值。
inset:定義 3D inset 邊框。其效果取決於 border-color 的值。
outset:定義 3D outset 邊框。其效果取決於 border-color 的值。
inherit:規定應該從父元素繼承邊框樣式。
註解:任何的版本的 Internet Explorer (包括 IE8)都不支援屬性值 "inherit" 或 "hidden"。
css border-style屬性 範例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p.none {border-style:none;} p.dotted {border-style:dotted;} p.dashed {border-style:dashed;} p.solid {border-style:solid;} p.double {border-style:double;} p.groove {border-style:groove;} p.ridge {border-style:ridge;} p.inset {border-style:inset;} p.outset {border-style:outset;} p.hidden {border-style:hidden;} </style> </head> <body> <p class="none">无边框。</p> <p class="dotted">虚线边框。</p> <p class="dashed">虚线边框。</p> <p class="solid">实线边框。</p> <p class="double">双边框。</p> <p class="groove"> 凹槽边框。</p> <p class="ridge">垄状边框。</p> <p class="inset">嵌入边框。</p> <p class="outset">外凸边框。</p> <p class="hidden">隐藏边框。</p> </body> </html>
效果圖:
以上是css border-style屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!