CSS: Border

By Xah Lee. Date: . Last updated: .

Border syntax

border: style width color

border is shorthand for

Sample code:

p {
 border: solid 2px red;
}

Border Style

Side Borders

Border can be applied to a side only.

The properties are:

Example

something in the water does not compute
.border3072 {
 display: inline-block;
 border-bottom: dotted 5px red;
}

Border with Round Corners

border-style: solid
border-style: dotted
border-style: dashed
border-style: double
border-style: groove
border-style: ridge
border-style: inset
border-style: outset

border-width

border-width: thin;

same as 1px.

border-width: medium;

same as 3px.

border-width: thick;

same as 5px.

CSS. border, margin, box model