邊框的樣式指的是邊框的線條屬性,指的是邊框採用的是實線效果、短線效果還是其它的線條效果。
border-right-style屬性設定的是某一元素的右邊框的樣式。
文法格式如下:
border-right-style : none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset
border-right-style屬性適用於所有元素。
border-right-style屬性值說明如下:
屬性值 | 說明 |
---|---|
none | 無右邊框。 |
dotted | 右邊框由點組成,形成點線效果。 |
dashed | 右邊框由短線組成,形成短線效果。 |
solid | 右邊框是實線。 |
double | 右邊框是雙實線,形成雙實線效果。 |
groove | 右邊框有立體效果的溝槽。 |
ridge | 右邊框成脊形。 |
inset | 右邊框內嵌一個立體邊框。 |
outset | 右邊框外嵌一個立體邊框。 |
只有右邊框和元素以及頁面其它屬性結合在一起的時候,才能真正展現其樣式。上表中,groove、ridge、inset以及outset等和右邊框顏色結合設定才能達到更好的效果。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS border-right-style属性设置元素的右边框样式实例-www.manongjc.com</title> <style type="text/css"> <!-- p{width:350px;} .dotted{border-right-style:dotted;} .dashed{border-right-style:dashed;} .solid{border-right-style:solid;} .double{border-right-style:double;} .groove{border-right-style:groove;} .ridge{border-right-style:ridge;} .inset{border-right-style:inset;} .outset{border-right-style:outset;} --> </style> </head> <body> <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>
參考閱讀:http://www.manongjc.com/article/1189.html