I need to create a solid color inset border. This is the bit of CSS I\'m using:
border: 10px inset rgba(51,153,0,0.65);
Unfortunately that cr
If box-sizing
is not an option, another way to do this is just to make it a child of the sized element.
CSS
.box {
width: 100px;
height: 100px;
display: inline-block;
margin-right: 5px;
}
.border {
border: 1px solid;
display: block;
}
.medium { border-width: 10px; }
.large { border-width: 25px; }
HTML
A
B
C