website border css code example
Example 1: border color css
border: 1px;
border-color: #3581fc;
Example 2: border width css
#some-div {
/* [WIDTH] [FILL MODE] [COLOR] */
border: 5px solid #f00;
/* draws solid a red line of 5px
between the padding (inside the div)
and the margin (outside the div) */
}