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