How do I remove background-image in css?

Itay Moav -Malimovka picture Itay Moav -Malimovka · Sep 22, 2009 · Viewed 313.6k times · Source

I have a general rule which gives all DIVs a background image.
I have one div (with id='a') which I don't want it to have the background image.
What css rule do I have to give it?

Answer

AnthonyWJones picture AnthonyWJones · Sep 22, 2009

Try:

div#a {
    background-image:none
}