CSS border property
Usage
A shorthand way to set all the border properties at once.
Variations
border-topborder-rightborder-bottomborder-left
Values
border-width,border-style, andborder-colorproperties
Example
Code:
div {
border: 1px solid black;
}
div {
border-right: 2px dotted orange;
}