/* Border-Color: Used to set the color of an element's border. */
border-color: black;
/* Border-Style: Allows you to set the style of a border - none, dotted, dashed, solid, or double. */
border-style: dotted;
/* Border-Radius: Allows you to add rounded corners to */
border-radius: 15px;
/* Border-Width: Used to set the width of an element's border. */
border-width: 20%
/* Border: Shorthand Property */
border: 10px, red, double;