border

英 [?b?:d?(r)]? ?美 [?b?:rd?(r)]??

n.邊界;邊;鑲邊;包邊

vt.& vi.與…接界,在…的邊上

vt.沿…的邊,環(huán)繞…,給…鑲邊

vi.近似,毗鄰

第三人稱單數(shù): borders 復(fù)數(shù): borders 現(xiàn)在分詞: bordering 過去式: bordered 過去分詞: bordered

bottom

英 [?b?t?m]? ?美 [?bɑ:t?m]??

n.底部;末端;臀部;盡頭

adj.底部的

vt.裝底;測量深淺;查明真相

vi.到達(dá)底部;建立基礎(chǔ)

第三人稱單數(shù): bottoms 復(fù)數(shù): bottoms 現(xiàn)在分詞: bottoming 過去式: bottomed 過去分詞: bottomed

style

英 [sta?l]? ?美 [sta?l]??

n.方式;樣式;時髦;儀表,品位

vt.設(shè)計;稱呼;為…造型

vi.使符合流行式樣;用刻刀作裝飾畫

第三人稱單數(shù): styles 復(fù)數(shù): styles 現(xiàn)在分詞: styling 過去式: styled 過去分詞: styled

css border-bottom-style屬性 語法

作用:設(shè)置元素下邊框的樣式。

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

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

css border-bottom-style屬性 示例

<html>
<head>
<style type="text/css">
p {border-style:solid}
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">No bottom border.</p>
<p class="dotted">A dotted bottom border.</p>
<p class="dashed">A dashed bottom border.</p>
<p class="solid">A solid bottom border.</p>
<p class="double">A double bottom border.</p>
<p class="groove">A groove bottom border.</p>
<p class="ridge">A ridge bottom border.</p>
<p class="inset">An inset bottom border.</p>
<p class="outset">An outset bottom border.</p>
</body>
</html>

運行實例 ?

點擊 "運行實例" 按鈕查看在線實例