Advertisement
Guest User

fixed-liquid-layout

a guest
Jun 17th, 2011
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.35 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.         width: 100%;
  20.         top: 0;
  21.     }
  22. </style>
  23. <body>
  24.     <div id="left"> </div>
  25.     <div id="right"> </div>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement