The CSS border properties represents the style, width, and color of an element's border.
Example of Code
<style type="text/css">
.shorthand-border-properties{
border-top: solid;
border-right: dashed;
border-bottom: ridge;
border-left: dotted;
}
</style>
<p class="shorthand-border-properties">CSS Border</p>
Ouput
CSS Border
