Advertisement
phidel

Untitled

Aug 25th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Верстка колонок</title>
  6.     <style>
  7. #wrapper {
  8.   margin-right: 200px;
  9. }
  10. #content {
  11.   float: left;
  12.   width: 100%;
  13.   background-color: #CCF;
  14. }
  15. #sidebar {
  16.   float: right;
  17.   width: 200px;
  18.   margin-right: -200px;
  19.   background-color: #FFA;
  20. }
  21. #cleared {
  22.   clear: both;
  23. }
  24.        </style>
  25. </head>
  26.  
  27. <body>
  28. <div id="wrapper">
  29.   <div id="content">Column 1 (fluid)</div>
  30.   <div id="sidebar">Column 2 (fixed)</div>
  31.   <div id="cleared">.clear.</div>
  32. </div>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement