左中右三栏+页眉页脚布局

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/lyd0902/article/details/79391239

效果图



  1. <!DOCTYPE html>  
  2. <html>  
  3.     <head>  
  4.         <meta charset="UTF-8">  
  5.         <title></title>  
  6.         <style type="text/css">  
  7.             .wrap{  
  8.                 margin: 0 auto;  
  9.                 width: 900px;  
  10.             }  
  11.             #header{  
  12.                 height: 100px;  
  13.                 background: #2AFFE5;  
  14.             }  
  15.             #main{  
  16.                 height: 500px;  
  17.                 background: #37FFC1;  
  18.             }  
  19.             #footer{  
  20.                 height: 80px;  
  21.                 background: #22FF91;  
  22.             }  
  23.             #middle{  
  24.                 width: 100%;  
  25.                 float: left;  
  26.             }  
  27.             #left{  
  28.                 width: 200px;  
  29.                 height: 100%;  
  30.                 background: #26E8BE;  
  31.                 float: left;  
  32.                 margin-left: -100%;  
  33.             }  
  34.             #right{  
  35.                 width: 200px;  
  36.                 height: 100%;  
  37.                 background: #26E8BE;  
  38.                 float: left;  
  39.                 margin-left: -200px;  
  40.             }  
  41.             .content{  
  42.                 height: 500px;  
  43.                 margin: 0 200px;  
  44.             }  
  45.         </style>  
  46.     </head>  
  47.     <body>  
  48.         <header id="header" class="wrap"></header>  
  49.         <section id="main" class="wrap">  
  50.             <section id="middle">   
  51.                 <div class="content"></div>  
  52.             </section>  
  53.             <aside id="left"></aside>  
  54.             <aside id="right"></aside>  
  55.         </section>  
  56.         <footer id="footer" class="wrap"></footer>  
  57.     </body>  
  58. </html>  

猜你喜欢

转载自blog.csdn.net/lyd0902/article/details/79391239