Bootstrap Full Page Background - HTML CSS CSS Property

HTML CSS examples for CSS Property:background

Description

Bootstrap Full Page Background

Demo Code

ResultView the demo in separate window

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

Related Tutorials