您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“css怎么設置邊框樣式”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“css怎么設置邊框樣式”這篇文章吧。
一:border邊框線的基本樣式
邊框樣式屬性指定要顯示什么樣的邊界
1.border-style屬性
none:默認無邊框
dotted:定義一個點線邊框
dashed:定義一個虛線邊框
solid:定義實線邊框
double:定義兩個邊框。兩個邊框的寬度和border-width的值相同
groove:定義3D溝槽邊框。效果取決于邊框的顏色值
ridge:定義3D脊邊框。效果取決于邊框的顏色值
inset:定義一個3D的嵌入邊框。效果取決于邊框的顏色值
outset:定義一個3D突出邊框。效果取決于邊框的顏色值
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title>border-style屬性</title>
<style>
.demo{width:500px;height:500px;margin:50pxauto;}
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>
<divclass="demo">
<pclass="none">無邊框。</p>
<pclass="dotted">虛線邊框。</p>
<pclass="dashed">虛線邊框。</p>
<pclass="solid">實線邊框。</p>
<pclass="double">雙邊框。</p>
<pclass="groove">凹槽邊框。</p>
<pclass="ridge">壟狀邊框。</p>
<pclass="inset">嵌入邊框。</p>
<pclass="outset">外凸邊框。</p>
<pclass="hidden">隱藏邊框。</p>
</div>
</body>
效果圖:
1.jpg
上例是同時設置上、下、左、右四面的邊框,也可以單獨設置一面的邊框:border-top-style(上邊框),border-bottom-style(下邊框),border-left-style(左邊框),border-right-style(右邊框).
2.border-width屬性
設置邊框寬度,為邊框指定寬度有兩種方法:可以指定長度值,比如2px或0.1em(單位為px,pt,cm,em等),或者使用3個關鍵字之一,它們分別是thick、medium(默認值)和thin。
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title>border-width屬性</title>
<style>
.demo{
width:500px;
height:500px;
margin:50pxauto;
}
.one{
border-style:solid;
border-width:5px;
}
.two{
border-style:solid;
border-width:medium;
}
.three{
border-style:solid;
border-width:1px;
}
</style>
</head>
<body>
<divclass="demo">
<pclass="one">一些文本。</p>
<pclass="two">一些文本。</p>
<pclass="three">一些文本。</p>
</div>
</body>
以上是“css怎么設置邊框樣式”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。