Blogger Information
Blog 28
fans 0
comment 1
visits 21344
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
基于浮动的二列布局
南宫
Original
522 people have browsed it
  1. <header>页眉</header>
  2. <div class="wrap">
  3. <aside>侧边栏</aside>
  4. <main>主题内容区</main>
  5. </div>
  6. <footer>页脚</footer>
  1. <style>
  2. header,
  3. footer,
  4. aside,
  5. main{
  6. background-color:gainsboro;
  7. }
  8. header,
  9. footer{
  10. height: 50px;
  11. }
  12. /* 不注释这个侧边栏和主题内容区不能放在同一行 */
  13. /* aside,
  14. main{
  15. min-width: 700px;
  16. } */
  17. .wrap{
  18. width: 1000px;
  19. border: 1px solid #000;
  20. /* 如果需要,内容将被剪裁以适合填充框。 不提供滚动条。scroll */
  21. overflow: hidden;
  22. margin: 10px auto;
  23. }
  24. aside{
  25. width: 200px;
  26. float: left;
  27. }
  28. main{
  29. width: 700px;
  30. float: right;
  31. }
  32. </style>
Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

Teacher's comments:看清作业要求, 群文件中有
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post