Blogger Information
Blog 28
fans 0
comment 1
visits 21320
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
flex容器属性实战: 快速撸一个主导航
南宫
Original
1202 people have browsed it
  1. <!-- flex做导航 -->
  2. <header>
  3. <nav>
  4. <a href="">首页</a>
  5. <a href="">教学视频</a>
  6. <a href="">社区问答</a>
  7. <a href="">资源下载</a>
  8. <a href="">登录/注册</a>
  9. </nav>
  10. </header>
  1. <style>
  2. /* 初始化 */
  3. * {
  4. padding: 0;
  5. margin: 0;
  6. box-sizing: border-box;
  7. }
  8. a{
  9. text-decoration: none;
  10. color: #ccc;
  11. }
  12. nav{
  13. height: 40px;
  14. background-color: #333;
  15. padding: 0 50px;
  16. /* 转为弹性盒布局 */
  17. display: flex;
  18. }
  19. nav a{
  20. height: inherit;
  21. line-height: 40px;
  22. padding: 0 15px;
  23. }
  24. nav a:hover{
  25. background-color: seagreen;
  26. color: white;
  27. }
  28. /* 登录/注册放在最右边 */
  29. nav a:last-of-type{
  30. margin-left: auto;
  31. }
  32. </style>

Correcting teacher:天蓬老师天蓬老师

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