欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Html 网页布局(一)_html/css_WEB-ITnose

程序员文章站 2022-04-23 14:43:09
...
                 

  1. 一列布局混合布局
  2. body {
  3. margin: 0;
  4. padding: 0; /*清楚默认样式*/
  5. }

  6. .top {
  7. height: 100px;
  8. background: blue;
  9. }
  10. .nav{height:100px;width:1000px;background:#f60;margin:0 auto;}
  11. .main {
  12. width: 800px;
  13. height: 600px;
  14. background: #ccc;
  15. margin: 0 auto;
  16. }
  17. .left{width:200px;height:600px;background:yellow;float:left;}
  18. .right{width:600px;height:600px;background:#369;float:right;}
  19. .sub_l{width:400px;height:600px;background:#218;float:left;}
  20. .sub_r{width:200px;height:600px;background:green;float:right;}
  21. .sub_r_up{width:200px;height:200px;background:#765;}
  22. .sub_r_down{width:200px;height:300px;background:red;}
  23. .bottom {
  24. width: 800px;
  25. height: 100px;
  26. background: #b0b;
  27. margin: 0 auto;
  28. }