To streamline the code, you can consolidate all individual border properties into a single shorthand property.
The border property serves as a shorthand for the following individual border properties:
Example
p { border: 5px solid red; } |
Outcome:
It is also possible to specify all individual border properties for a single side.
p { border-left: 6px solid red; } |
Outcome:
p { } |
Outcome: