溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

css中border-bottom-style屬性如何使用

發(fā)布時間:2020-09-23 14:41:31 來源:億速云 閱讀:187 作者:小新 欄目:web開發(fā)

這篇文章主要介紹css中border-bottom-style屬性如何使用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

css border-bottom-style屬性用于設(shè)置元素底部邊框樣式,只有當(dāng)屬性值不是 none 時邊框才可能出現(xiàn)。

css border-bottom-style屬性怎么用?

border-bottom-style屬性設(shè)置元素下邊框的樣式。

可以設(shè)置的屬性值:

● none:指定無邊框

● hidden:與"none" 相同。不過應(yīng)用于表時除外,對于表,hidden 用于解決邊框沖突。

● dotted:指定點狀邊框。

● dashed:指定虛線邊框。

● solid:指定實線邊框。

● double:指定一個雙邊框。

● groove:定義雙線。雙線的寬度等于 border-width 的值。

● ridge:定義三維菱形邊框。其效果取決于 border-color 的值。

● inset:定義三維凹邊框。其效果取決于 border-color 的值。

● outset:定義三維凸邊框。其效果取決于 border-color 的值。

● inherit:指定應(yīng)該從父元素繼承邊框樣式。

說明:只有當(dāng)屬性值不是 none 時邊框才可能出現(xiàn)。在 CSS1 中,HTML 用戶代理只需支持 solid 和 none。

注釋:任何的版本的 Internet Explorer (包括 IE8)都不支持屬性值 "inherit" 或 "hidden"。

css border-bottom-style屬性 示例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<style>
p.none {border-bottom-style:none;}
p.dotted {border-bottom-style:dotted;}
p.dashed {border-bottom-style:dashed;}
p.solid {border-bottom-style:solid;}
p.double {border-bottom-style:double;}
p.groove {border-bottom-style:groove;}
p.ridge {border-bottom-style:ridge;}
p.inset {border-bottom-style:inset;}
p.outset {border-bottom-style:outset;}
</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>
</body>
</html>

效果圖:

css中border-bottom-style屬性如何使用

以上是css中border-bottom-style屬性如何使用的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI