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
You can do this:
.thing { border: 2px solid transparent; } .thing:hover { border: 2px solid green; }