Override CSS Background that has !important - HTML CSS CSS Property

HTML CSS examples for CSS Property:background

Description

Override CSS Background that has !important

Demo Code

ResultView the demo in separate window


<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>

Related Tutorials