Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. #container {
  5. width:100%;
  6. }
  7. #left {
  8. float:left;
  9. background-color:red;
  10. height:300px;
  11. width:200px;
  12. }
  13. #right {
  14. float:right;
  15. background-color:blue;
  16. width:300px;
  17. height:500px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id='container'>
  23. <div id='left'>left</div>
  24. <div id='right'>right</div>
  25. </div>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement