Skip to main content

CSS

12th October, 2022

Updated: 13th October, 2022

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    
    <style type="text/css">
    
    html, body {
         margin:0; padding:0;
         height:100%;
    }
    
    body {
    
    }
    
    #wrapper {
         background:url('bg_xrepeat.jpg') repeat-x center center;
         min-height: 606px;
         width: 100%;
         height: 100%;
    }
    
    #push {
         position:relative; float:left;
         height:50%;
         margin-bottom:-303px;
         width:1px;
    }
    
    #contentContainer {
         position:relative; clear:left;
         height:606px; width:1360px; max-width:1018px; min-width:606px;
         margin:0 auto;
         background:url('bg.jpg') no-repeat center center;
    }
    
    #header {height: 62px; overflow: hidden;}
    #content {height: 492px; overflow: hidden;}
    #footer {overflow: hidden;}
    
    </style>
    </head>
    
    <body>
         <div id="wrapper">
    
         <div id="push"></div>
         <div id="contentContainer">
    
              <div id="header">Header</div>
              <div id="content">content</div>
              <div id="footer">footer</div>
    
         </div>
    </div>
    
    </body>
    </html>

    cdcaeb7d-1f7a-4a12-bfc6-4af3895a9dfe

    Created on: 12th October, 2022

    Last updated: 13th October, 2022

    Tagged With: