CSS Borders
In CSS you can style, color and change the size of an element's Borders using the "border" property.
The Border is specified as per below:
- border-style: dotted | dashed | solid | double | groove | ridge | hidden | none | inset | outset;
- border-width: numeric value
- border-color: any color
- border-radius: numeric value or %
This property can accept up to 4 values!
e.g p.mix {border-style: ridge dotted groove double;}
Some Border examples:
Solid 10px
Dotted thick
The output:
Solid 10px
Dotted thick