Advertisement
newbitek

fixed

Dec 25th, 2017
563
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  <title>FIXED Navbar</title>
  5.  <style type="text/css">
  6.  #wrapper{
  7.   width : 960px;
  8.   margin : 0 auto;
  9.    }
  10.  #header {
  11.   width:960px;
  12.   height:50px;
  13.   background: blue;
  14.   position: fixed;
  15.   margin-bottom: 10px;
  16.    }
  17.  #content{
  18.   padding:20px;
  19.   background : green;
  20.   margin-bottom : 10px;
  21.   overflow:hidden;
  22.    }
  23.  #artikel{
  24.   width : 600px;
  25.   height : 800px;
  26.   float : left;
  27.   background: orange;
  28.    }
  29.   #sidebar {
  30.   width : 300px;
  31.   height: 200px;
  32.   float : right;
  33.   background: orange;
  34.    }
  35.   #footer{
  36.   width : 100%;
  37.   height: 50px;
  38.   background: green;
  39.    }
  40.  </style>
  41. </head>
  42. <body>
  43. <div id="wrapper">
  44.  <div id="header"></div>
  45.  <div id="content">
  46.   <div id="artikel"></div>
  47.   <div id="sidebar"></div>
  48.  </div>
  49.  <div id="footer"></div>
  50. </div
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement