HTML CSS examples for CSS Property:background
Bootstrap Full Page Background
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> body {<!-- w w w .j a v a 2 s . co m--> margin: 0; } .test { background-color: red; height: 100vh; width: 100vw; } </style> </head> <body> <div class="test"> content </div> </body> </html>