Add background-color in a section part - HTML CSS CSS Property

HTML CSS examples for CSS Property:background-color

Description

Add background-color in a section part

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <title>Testing</title> 
  <style>

#ABC {<!--from   www .ja  va  2 s . co m-->
   background-color: blue;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
}
body{
   background: grey;
   margin: 0;
}


      </style> 
 </head> 
 <body> 
  <section id="ABC"> 
  </section>  
 </body>
</html>

Related Tutorials