您好,登錄后才能下訂單哦!
本篇文章為大家展示了css中如何使用border-bottom-style屬性,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
css border-bottom-style屬性用于設置元素底部邊框樣式,只有當屬性值不是 none 時邊框才可能出現。
css border-bottom-style屬性怎么用?
border-bottom-style屬性設置元素下邊框的樣式。
可以設置的屬性值:
● none:指定無邊框
● hidden:與"none" 相同。不過應用于表時除外,對于表,hidden 用于解決邊框沖突。
● dotted:指定點狀邊框。
● dashed:指定虛線邊框。
● solid:指定實線邊框。
● double:指定一個雙邊框。
● groove:定義雙線。雙線的寬度等于 border-width 的值。
● ridge:定義三維菱形邊框。其效果取決于 border-color 的值。
● inset:定義三維凹邊框。其效果取決于 border-color 的值。
● outset:定義三維凸邊框。其效果取決于 border-color 的值。
● inherit:指定應該從父元素繼承邊框樣式。
說明:只有當屬性值不是 none 時邊框才可能出現。在 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屬性,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。