首頁 >web前端 >css教學 >border-style屬性怎麼用

border-style屬性怎麼用

青灯夜游
青灯夜游原創
2019-02-15 13:31:357337瀏覽

border-style屬性用於同時為一個元素的四個邊框設定樣式,或單獨為各邊設定邊框樣式。

border-style屬性怎麼用

CSS 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;}

效果圖:

border-style屬性怎麼用

說明:只有當border-style屬性的值不是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:規定應該從父元素繼承邊框樣式。

CSS border-style屬性的使用範例

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
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}
</style>
</head>
<body>
<p class="dotted">dotted边框</p>
<p class="dashed">dashed边框</p>
<p class="solid">solid边框</p>
<p class="double">double边框</p>
<p class="groove">groove边框</p>
<p class="ridge">ridge边框</p>
<p class="inset">inset边框</p>
<p class="outset">outset边框</p>
</body>
</html>

效果圖:

border-style屬性怎麼用# #

以上是border-style屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多