css border-bottom-style property
Translation results:
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
style
英[staɪl] 美[staɪl]
n. Way; style; fashion; appearance, taste
vt. design; title; style for...
vi. Make it conform to popular styles; use a carving knife to make decorative paintings
Third person singular: styles Plural: styles Present participle: styling Past tense: styled Past participle: styled
css border-bottom-style propertysyntax
Function: Set the style of the lower border of the element.
Note: The border may appear only when this value is not none. In CSS1, HTML user agents only need to support solid and none.
Note: Any version of Internet Explorer (including IE8) does not support the attribute value "inherit" or "hidden".
css border-bottom-style propertyexample
<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>
Run instance »
Click the "Run instance" button to view the online instance