Advertisement
Guest User

Untitled

a guest
Jun 17th, 2011
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.38 KB | None | 0 0
  1. <html>
  2. <style>
  3.     #left
  4.     {
  5.         position: absolute;
  6.         width: 100px;
  7.         height: 100%;
  8.         top: 0;
  9.         left: 0;
  10.         background: red;
  11.         float: left;
  12.     }
  13.     #right
  14.     {
  15.         position: absolute;
  16.         margin-left: 100px;
  17.         background: green;
  18.         height: 100%;
  19.         top: 0;
  20.             left: 0;
  21.             right: 0;
  22.     }
  23. </style>
  24. <body>
  25.     <div id="left"> </div>
  26.     <div id="right"> </div>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement