Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <style>
  5.     .container {
  6.         margin: auto;
  7.         width: 200px;
  8.         height: 200px;
  9.     }
  10.     .block {
  11.         width: 100px;
  12.         height: 100px;
  13.         float: left;
  14.     }
  15.     .red { background-color: red; }
  16.     .blue { background-color: blue; }
  17.     .yellow { background-color: yellow; }
  18.     .black { background-color: black; }
  19.   </style>
  20. </head>
  21. <body>
  22.     <div class="container">
  23.         <div class="block red"></div><div class="block blue"></div>
  24.         <div style="clear:both;"></div>
  25.         <div class="block yellow"></div><div class="block black"></div>
  26.     </div>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement