HTML CSS examples for CSS Property:background
Override CSS Background that has !important
<html> <head> <style> body {<!-- ww w .jav a 2 s. c o m--> background-image: none !important; background: black !important; } html > body { background-image: none !important; background: red !important; } </style> </head> <body class="kittens"> </body> </html>