16 Border-converted
16 Border-converted
p { border-style: dotted; }
all
border-width
It sets width of element’s border. We can set this property to thin,
medium, thick, length in the form of px.
Ex:-
p { border-style: solid; border-width: thick;}
p { border-style: solid; border-width: 5px;}
border-width
p { border-width: thick medium thin 5px; }
p { border-width: 5px; }
all
border-color
It sets color of border. We can set this property to transparent and
color value.
Ex:-
p { border-style: solid; border-color: blue;}
p { border-style: solid; border-color: #5A4218;}
border-color
p { border-color: blue red black green; }
p { border-color: blue; }
all
border
It is shorthand of all border properties. The order should be :
border-width, border-style, and border-color.
Ex: -
p { border: 10px solid blue; }
p { border: solid blue; }