HTML CSS examples for CSS Property:background-color
Add background-color in a section part
<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>