The border property is a shorthand tag to define all the border style properties of an element.
border: [ <border-width> || <border-style> || <color> ] | inherit
Not defined for shorthand properties.
All elements.
This property is not inherited.
standard border
<p style="border : 2em solid #c00;">
This paragraph has a 2 em solid red border.
</p>
- If you omit the color value, the color will be the same as the color value for the element.

