Alexei
Alexei

Reputation: 347

Remove body's background image from div

I have a background-image for body. I want remove this background image in the divs.

Is it possible with CSS only?

I tried with

div{
  background-image:none;
}

Upvotes: 0

Views: 919

Answers (1)

Mir
Mir

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

Related Questions