Advertisement
Guest User

asdasdasd

a guest
Apr 20th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. *{
  2.     margin: 0;
  3.     padding: 0px;
  4.     height: 100%;
  5. }
  6. .header{
  7.     width: 100%;
  8.     height: 200px;
  9.     background-color: red;
  10.     bottom: 100%;
  11.    
  12. }
  13. .content{
  14.     background-color: green;
  15.     width: 100%;
  16.     min-height: 700px;
  17.     max-height: calc(100% - 400px);
  18.    
  19. }
  20. .content2{
  21.     width: 80%;
  22.     height: 500px;
  23.     background-color: purple;
  24.     float: left;
  25.    
  26. }
  27. .content3{
  28.     width: 20%;
  29.     height: 700px;
  30.     background-color: black;
  31.     float: right;
  32.  
  33.     }
  34. .footer{
  35.    
  36.  
  37.     width: 100%;
  38.     height: 200px;
  39.     background-color: yellow;
  40.  
  41. }
  42.  
  43.  
  44.  
  45. <!DOCTYPE HTML>
  46. <html>
  47.     <head>
  48.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  49.         <link rel = "stylesheet" type="text/css" href = "style/style.css">
  50.         <title>task 3</title>
  51.     </head>
  52.     <body>
  53.         <div class = "header">
  54.  
  55.         </div>
  56.         <div class = "content">
  57.             <div class  = "content2"></div>
  58.             <div class  = "content3"></div>
  59.            
  60.         </div>
  61.         <div class = "footer"></div>
  62.     </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement