border
UK[?b?:d?(r)] US[?b?:rd?(r)]
n.Border; edge; edging; wrapping Edge
vt.& vi. Bound with, on the edge of...
vt. Along the edge of, surround..., edge...
vi. Approximate, adjacent
Third person singular: borders Plural: borders Present participle: bordering Past tense: bordered Past participle: bordered
bottom
英[ ?b?t?m] 美[?bɑ:t?m]
n. Bottom; end; hip; end
adj. Bottom of
vt. Install the bottom; measure the depth; find out the truth
vi. Reach the bottom; establish a foundation
Third person singular: bottoms Plural: bottoms Present participle: bottoming Past tense: bottomed Past participle: bottomed
width
UK[w?dθ] US[w?dθ, w?θ, w?tθ]
n.Width; breadth
Plural: widths
css border-bottom-width property syntax
Function:Set the width of the bottom border of the element.
Note: Only works when the border style is not none. If the border style is none, the border width is actually reset to 0. Negative length values ??are not allowed.
Note: Always declare the border-style attribute before the border-bottom-width attribute. An element can only change the width of its border after it has acquired it.
css border-bottom-width property example
<html> <head> <style type="text/css"> p.one { border-style: solid; border-bottom-width: 15px } p.two { border-style: solid; border-bottom-width: thin } </style> </head> <body> <p class="one"><b>注釋:</b>"border-bottom-width" 屬性如果單獨(dú)使用的話是不會(huì)起作用的。請(qǐng)首先使用 "border-style" 屬性來(lái)設(shè)置邊框。</p> <p class="two">Some text. Some more text.</p> </body> </html>
Run instance ?
Click the "Run instance" button to view the online instance