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
I would recomnend using box-sizing.
box-sizing
*{ -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box; } #bar{ border: 10px solid green; }