CSS: Border
Border syntax
border: style width color
border is shorthand for
border-styleborder-widthborder-color
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:
border-top: solid 5px redborder-bottom: solid 5px redborder-left: solid 5px redborder-right: solid 5px red
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.