Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>FIXED Navbar</title>
- <style type="text/css">
- #wrapper{
- width : 960px;
- margin : 0 auto;
- }
- #header {
- width:960px;
- height:50px;
- background: blue;
- position: fixed;
- margin-bottom: 10px;
- }
- #content{
- padding:20px;
- background : green;
- margin-bottom : 10px;
- overflow:hidden;
- }
- #artikel{
- width : 600px;
- height : 800px;
- float : left;
- background: orange;
- }
- #sidebar {
- width : 300px;
- height: 200px;
- float : right;
- background: orange;
- }
- #footer{
- width : 100%;
- height: 50px;
- background: green;
- }
- </style>
- </head>
- <body>
- <div id="wrapper">
- <div id="header"></div>
- <div id="content">
- <div id="artikel"></div>
- <div id="sidebar"></div>
- </div>
- <div id="footer"></div>
- </div
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement