Get divs to appear over the header - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Header

Description

Get divs to appear over the header

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

h1 {<!--from   w w  w  . j  a  v  a2 s  . c om-->
   background: #000096;
   color: #FFF;
   text-align: center;
   font-weight: bold;
   font-size: 1em;
}
.horizontal-div-container div {
   float: left;
   clear: none;
}
.even-spacing-signature div
{
   font-weight: bold;
   width: 50%;
}
.wrapper {
   overflow: hidden;
}


      </style> 
 </head> 
 <body> 
  <div class="wrapper"> 
   <div class="horizontal-div-container even-spacing-signature"> 
    <div> 
     <span>Signed by the Client: ______________________ </span> 
    </div> 
    <div> 
     <span>Signed by the Engineer: _____________________</span> 
    </div> 
   </div> 
   <div class="horizontal-div-container even-spacing-signature"> 
    <div> 
     <span>Date: ______________________ </span> 
    </div> 
    <div> 
     <span>Date: _____________________</span> 
    </div> 
   </div> 
  </div> 
  <h1> Appendix 3, Client Information </h1>  
 </body>
</html>

Related Tutorials