border-top-style
sets the style for the top border.
Item | Value |
---|---|
Initial value | none |
Inherited | No. |
Version | CSS1 |
JavaScript syntax | object.style.borderTopStyle="dotted" |
Applies to | All elements. |
border-top-style: dashed | 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 |
border-top-style |
Yes | Yes | Yes | Yes | Yes |
An example showing how to use border-top-style CSS property.
<!DOCTYPE HTML>
<html>
<head>
<style>
div{<!--from w w w.j a v a2s . c o m-->
border-top-style: double;
}
</style>
</head>
<body>
<div>
Java2s.com
</div>
</body>
</html>