博客列表 >1225work

1225work

彩色的雪
彩色的雪原创
2019年12月26日 18:46:33590浏览

1225work.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="stylesheet" href="../static/font/iconfont.css">
  6. <link rel="stylesheet" href="public/public-header/public-header.css">
  7. <link rel="stylesheet" href="public/public-headline/public-headline.css">
  8. <title>头部导航</title>
  9. </head>
  10. <body>
  11. <div class="public-header">
  12. <a href="">网站首页</a>
  13. <a href="">专题</a>
  14. <a href="">网站导航</a>
  15. <a href="">二手商品</a>
  16. <a href="">讨论区</a>
  17. <span>
  18. <a href=""><i class="iconfont icon-huiyuan2"></i>登录</a>
  19. <a href="">免费注册</a>
  20. </span>
  21. </div>
  22. <!--大标题-->
  23. <div class="public-headline">
  24. <span>二手交易</span>
  25. </div>
  26. </body>
  27. </html>
  28. ```html

public-header.css

  1. @import url(../public-reset.css);
  2. .public-header{
  3. height: 44px;
  4. background-color: black;
  5. padding: 0 20px;
  6. display: flex;
  7. flex-flow: row nowrap;
  8. }
  9. .public-header a{
  10. line-height: 44px;
  11. color: #cccccc;
  12. padding: 0 10px;
  13. }
  14. .public-header > a:hover{
  15. background: white;
  16. color: black;
  17. }
  18. .public-header > span{
  19. margin-left: auto;
  20. }
  21. .public-header > span i{
  22. font-size: 16px;
  23. color: #cccccc;
  24. padding-right: 10px;
  25. }
  26. ```css

public-headline

css
@import “../public-reset.css”;

.public-headline{
padding: 30px;
text-align: center;
}
.public-headline > span{
font-size: 30px;
font-weight: bolder;
padding-bottom: 7px;
border-bottom: 3px solid red;
}

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议