Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <style>
- html
- {
- overflow:hidden;
- }
- body
- {
- margin:0;
- padding:0;
- }
- #left
- {
- float:left;
- background-color:#f1a2c3;
- height:100%;
- width:150px;
- }
- #center
- {
- background-color:#1a2c3b;
- height:100%;
- }
- #right
- {
- height:100%;
- width:200px;
- float:right; /* outer-wrapper je u nivou sa right-col, prvi ima float:left, a drugi float:right */
- background-color:#33bbff;
- }
- #outer-wrapper
- {
- float:left;
- width:100%;
- margin-right: -200px; /* podesi samo desnu negativnu marginu, leva pravi problem */
- height:100%;
- }
- #inner-wrapper
- {
- margin-right:200px;
- height:100%;
- }
- </style>
- </head>
- <body>
- <div id = "outer-wrapper">
- <div id = "inner-wrapper">
- <div id="left"></div>
- <div id="center"></div>
- </div>
- </div>
- <div id="right"></div>
- </body
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement