CSS: Border

By Xah Lee. Date: . Last updated: .

Border syntax

border: style width color

border is shorthand for

Sample code:

x {
 border: solid 2px red;
}

border-style

Border on just one side

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;
}

sample. border with round corners

border-width

border-width: thin;

same as 1px.

border-width: medium;

same as 3px.

border-width: thick;

same as 5px.

CSS. box model, margin, padding, border