css add width to border code example
Example 1: border width css
.element {
border-width: 2px;
}
Example 2: border 1px thick
.beispielEins {
border: solid #ccc;
border-width: 3px;
}
.element {
border-width: 2px;
}
.beispielEins {
border: solid #ccc;
border-width: 3px;
}