Advertisement
newbitek

floating

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