CSS border-style
The CSS border-style
property allows you to set the border style on all sides of an element.
You can supply from one to four values. Each value specifies the style for each side of the element.
For example, if four values are provided, they will apply to the top, right, bottom and left borders (in that order). Supplying one value applies the style to all four sides. Supplying three values applies the styles to top, left and right, and bottom (in that order).
Syntax
Where
Details on these values below.
Possible Values
none
-
No border. Color and width are ignored. Therefore, the border's width is
0
, and the initial value ofborder-image-width
will also resolve to zero. hidden
dotted
- A series of round dots.
dashed
- A series of square-ended dashes.
solid
- A single line segment.
double
- Two parallel solid lines with some space between them. When using this value, the
border-width
value determines the sum of the lines and the space between them. groove
- Looks as if it were carved in the canvas.
ridge
- Looks as if it were coming out of the canvas.
inset
- Looks as if the content on the inside of the border is sunken into the canvas. Treated as
ridge
in the collapsing border model. outset
- Looks as if the content on the inside of the border is coming out of the canvas. Treated as
groove
in the collapsing border model.
In addition, all CSS properties also accept the following CSS-wide keyword values as the sole component of their property value:
initial
- Represents the value specified as the property's initial value.
inherit
- Represents the computed value of the property on the element's parent.
unset
- This value acts as either
inherit
orinitial
, depending on whether the property is inherited or not. In other words, it sets all properties to their parent value if they are inheritable or to their initial value if not inheritable.
General Information
- Initial Value
none
(based on the intial value of the individual properties).- Applies To
- All elements.
- Inherited?
- No
- Media
- Visual
Example Code
Official Specifications
- CSS Backgrounds and Borders Module Level 3 (W3C Candidate Recommendation 9 September 2014)
- CSS Level 2.1 (W3C Recommendation 07 June 2011)
- CSS Level 1 (W3C Recommendation 17 Dec 1996)