With the CSS below, the background colour is overridden to be blue (where it shows):
- #div1 { width: 200px; height: 200px; background: red url(foo.png) no-repeat; }
- #div1 { background-color: blue; }
If you want to remove the image you also need:
- #div1 { background-image: none; }