Advertisement
Chessbrain94

Untitled

Jun 13th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.88 KB | None | 0 0
  1. #header, #footer {
  2.     height: 10%;
  3.     width: 100%;
  4.     background-color: gray;
  5. }
  6. .left, .right {          
  7.     display: inline-block;
  8.     height: 80%;
  9.     width: 10%;
  10.     background-color: yellow;
  11. }
  12. .right {
  13.     float: right;
  14. }
  15. #footer {
  16.     clear: both;
  17. }
  18. .center{
  19.     margin: 0;
  20.     background-color: red;
  21.     height: 79.7%;
  22.     width: 79.7%;
  23.     display: inline-block;
  24.     border: 1px solid red;
  25. }
  26.  
  27. ------------------------------------
  28. <!DOCTYPE html>
  29. <html lang="en">
  30. <head>
  31.     <title>WRD Only</title>
  32.     <script src="mainJS.js"></script>
  33.     <link rel="stylesheet" href="style.css">
  34. </head>
  35. <body>
  36.     <div style="width: 100%; height: 100%; position: absolute">
  37.     <div id="header">header</div>
  38.     <div class="left">aa</div>
  39.     <div class="center"></div>
  40.     <div class="right">bb</div>    
  41.     <div id="footer">footer</div>
  42.     </div>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement