CSS 将导航栏固定在窗口的顶部(fixed)

在这里插入图片描述
header / footer 固定住。

<body>
<div class="header">header</div>
<div class="main">main</div>
<div class="footer">footer</div>
</body>
      .header{
         position: fixed;
         top:0;
         width: 100%;
         height: 30px;
         background-color: red;
      }
      .footer{
         position: fixed;
         bottom: 0;
         width: 100%;
         height: 30px;
         background-color: red;
      }
      .main{
         margin-top: 35px;
         min-height: 1000px;
         background-color: yellow;
      }

猜你喜欢

转载自blog.csdn.net/weixin_44198965/article/details/107255979
今日推荐