Web_Designer
Web_Designer

Reputation: 74560

background of content box

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

Answers (1)

MatTheCat
MatTheCat

Reputation: 18721

You can use background-clip with value content-box, but this is CSS3 ^^

background-clip: content-box;

Upvotes: 2

Related Questions