Advertisement
Guest User

Working Source

a guest
Jun 26th, 2013
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.27 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <style>
  5.    body, div, h1, h2, h3, h4, h5, h6, img, a, p {
  6.       margin: 0;
  7.       padding: 0;
  8.       border: 0;
  9.    }
  10.  
  11.    body {
  12.       margin: 0;
  13.       padding: 0;
  14.       height: 100%;
  15.       width: 100%;
  16.    }
  17.  
  18.    #header {
  19.       height: 5%;
  20.       width: 100%;
  21.    }  
  22.    
  23.    #content {
  24.       height: 90%;
  25.       width: 100%;
  26.       display: table;
  27.    }  
  28.    
  29.    #gamescreen {
  30.       display: table;
  31.       height: 100%;
  32.       width: 100%;
  33.    }  
  34.  
  35.    #left-col {
  36.       float: left;
  37.       height: 100%;
  38.       width: 20%;
  39.       background: green;
  40.    }  
  41.  
  42.    #center-col {
  43.       float: left;
  44.       height: 100%;
  45.       width: 60%;
  46.       background: blue;
  47.    }  
  48.  
  49.    #right-col {
  50.       float: left;
  51.       height: 100%;
  52.       width: 20%;
  53.       background: red;
  54.    }  
  55.    
  56.    #footer {
  57.       height: 5%;
  58.       width: 100%;
  59.    }  
  60. </style>
  61. </head>
  62. <body>
  63.  
  64. <div id='header'>
  65.    H  
  66. </div>
  67.  
  68. <div id='content'>
  69.    <div id='gamescreen'>
  70.       <div id='left-col'>
  71.          Left Col
  72.       </div>
  73.       <div id='center-col'>
  74.          Center Col
  75.       </div>
  76.       <div id='right-col' >
  77.          Right Col
  78.       </div>
  79.    </div>
  80. </div>
  81.  
  82. <div id='footer'>
  83.    F  
  84. </div>
  85. </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement