Guest User

Untitled

a guest
Nov 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.65 KB | None | 0 0
  1. <!DOCTYPE html><html><head>
  2.  
  3. <style type="text/css">
  4.  
  5. #leftBlockTop
  6.     {
  7.     width:300px; height:200px;
  8.  
  9.     position: absolute; top: -0px;
  10.    
  11.     background-color:#fdeaa8;
  12.     }
  13.    
  14. #leftBlockBottom
  15.     {
  16.     width:300px; height:200px;
  17.    
  18.     position: absolute; bottom: -0px;
  19.    
  20.     background-color:#00a8ff;
  21.     }
  22.    
  23. #centerBlock
  24.     {
  25.     width:300px; height:200px;
  26.    
  27.     position:absolute; left:50%; top:50%;
  28.     margin:-100px 0 0 -150px;
  29.    
  30.     background-color:#ccff00;
  31.     }
  32.  
  33. </style></head>
  34.  
  35. <body>
  36.     <div id="leftBlockTop">Я сверху</div>
  37.     <div id="leftBlockBottom">Я снизу! </div>
  38.     <div id="centerBlock">А я в центре, лол.</div>
  39. </body>
  40. </html>
Add Comment
Please, Sign In to add comment