Advertisement
heroys6

[softheme] Blocks

Oct 3rd, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.14 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>[softheme] blocks</title>
  6.     <style type="text/css">
  7.         .block0 {
  8.             width: 25%;
  9.             float: left;
  10.         }
  11.         .block {
  12.             width: 90%;
  13.             background: #8cf3fe;
  14.             text-align: center;
  15.             margin-top: 5px;
  16.             border: solid 1px grey;
  17.         }
  18.     </style>
  19. </head>
  20. <body>
  21.  
  22.     <div class="block0">
  23.         <div class="block" style="height: 75px">
  24.             Block 1
  25.         </div>
  26.         <div class="block" style="height: 157px">
  27.             Block 4
  28.         </div>
  29.         <div class="block" style="height: 75px">
  30.             Block 6
  31.         </div>
  32.     </div>
  33.    
  34.     <div class="block0" style="position: relative">
  35.         <div class="block" style="height: 50px">
  36.             Block 2
  37.         </div>
  38.         <div class="block" style="height: 100px">
  39.             Block 3
  40.         </div>
  41.         <div class="block" style="height: 100px">
  42.             Block 5
  43.         </div>
  44.         <div class="block" style="height: 50px">
  45.             Block 7
  46.         </div>
  47.     </div>
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement