The border-width property sets the width of an element’s four borders in a single declaration. code example
Example: border width css
element {
border-width: 10px;
/* Or use shorthand border property */
/* width style colour */
border: 10px solid black;
}