border color, size css code example
Example 1: how to add border in css
.div1{
border: 10px;
border-color: #000000;
border-style: solid;
}
Example 2: border width css
.element {
border-width: 2px;
}
.div1{
border: 10px;
border-color: #000000;
border-style: solid;
}
.element {
border-width: 2px;
}