border-bottom-style
Description
border-bottom-style
defines the style for the bottom border.
Item | Value |
---|---|
Initial value | none |
Inherited | No. |
Version | CSS1 |
JavaScript syntax | object.style.borderBottomStyle="dotted" |
Applies to | All elements. |
Syntax and Property Values
border-bottom-style: dashed | /* www .j av a 2s . c o m*/
dotted |
double |
groove |
hidden |
inset |
inherit |
none |
outset |
ridge |
solid
The property values are listed in the following table.
Value | Description |
---|---|
none | no border |
hidden | The same as "none", except in border conflict resolution for table elements |
dotted | a dotted border |
dashed | a dashed border |
solid | a solid border |
double | a double border |
groove | a 3D grooved border whose effect depends on the border-color value |
ridge | a 3D ridged border whose effect depends on the border-color value |
inset | a 3D inset border whose effect depends on the border-color value |
outset | a 3D outset border whose effect depends on the border-color value |
inherit | inherit the border style from the parent element |
Example
<!DOCTYPE HTML>
<html>
<head>
<style>
div{<!--from ww w. j ava 2 s .c om-->
border-bottom-style: double;
}
</style>
</head>
<body>
<div>
Java2s.com
</div>
</body>
</html>
The code above generates the following result.