Reputation: 74560
If an element has transparent but existing borders you can see that the background-color shows through the transparent borders: Here's Proof
How can I set a background-color that will only show in the content box?
Upvotes: 1
Views: 328
Reputation: 18721
You can use background-clip
with value content-box
, but this is CSS3 ^^
background-clip: content-box;
Upvotes: 2