Reputation: 347
I have a background-image
for body
. I want remove this background image in the div
s.
Is it possible with CSS only?
I tried with
div{
background-image:none;
}
Upvotes: 0
Views: 919
Reputation: 1613
HTML elements have a transparent background by default. So if you simply want to cover body's background you can set a background to the div
like that:
div {
background-color: #fff;
}
This works like covering a photo with a piece of paper.
Upvotes: 6