width adjust to border code example
Example 1: border width css
.element {
border-width: 2px;
}
Example 2: border width css
element {
border-width: 10px;
/* Or use shorthand border property */
/* width style colour */
border: 10px solid black;
}