3 Columns, liquid width, left rail tallest


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html>
  5. <head>
  6. <title>3 columns, liquid width, left rail tallest</title>
  7. <style type="text/css">
  8. body{
  9. margin:0 100px;
  10. padding:0 200px 0 150px;
  11. }
  12. #container{
  13. background-color:#9cc;
  14. float:left;
  15. width:100%;
  16. border-left:150px solid #cf9; /* The width and color of the left rail */
  17. border-right:200px solid #c33; /* The width and color of the right rail */
  18. margin-left:-150px;
  19. margin-right:-200px;
  20. display:inline; /* So IE plays nice */
  21. }
  22. #leftRail{
  23. float:left;
  24. width:150px;
  25. margin-left:-150px;
  26. position:relative;
  27. }
  28. #center{
  29. float:left;
  30. width:100%;
  31. margin-right:-100%;
  32. }
  33. #rightRail{
  34. float:right;
  35. width:200px;
  36. margin-right:-200px;
  37. position:relative;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <div id="container">
  43. <div id="center">CENTER COLUMN CONTENT</div>
  44. <div id="leftRail">LEFT<br /> RAIL</div>
  45.  
  46. <div id="rightRail">RIGHT RAIL</div>
  47. </div>
  48. </body>
  49. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.