Blogger Information
Blog 7
fans 0
comment 0
visits 2512
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
简单布局演示
追梦赤子
Original
350 people have browsed it

简单布局演示

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>简单布局演示</title>
  6. </head>
  7. <body>
  8. <!--1. div+id布局-->
  9. <div id="header">页眉</div>
  10. <div id="main">主体</div>
  11. <div id="footer">页脚</div>
  12. <!--2. div+class布局-->
  13. <div class="header">页眉</div>
  14. <div class="main">主体</div>
  15. <div class="footer">页脚</div>
  16. <!--3. 语义化布局-->
  17. <header>页眉</header>
  18. <main>主体</main>
  19. <footer>页脚</footer>
  20. <!--4. 优化div+class布局-->
  21. <div class="article header">文章页眉</div>
  22. <div class="article main">文章主体</div>
  23. <div class="article footer">文章页脚</div>
  24. </body>
  25. </html>
Correcting teacher:PHPzPHPz

Correction status:qualified

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