金黑 发表于 2023-4-6 15:02:44

css制作导航条固定在顶部教程

css制作导航条固定在顶部教程

先看html代码:
<body>
<div class="header">header</div>
<div class="main">main</div>
<div class="footer">footer</div>
</body>需要将顶部header固定,下面就是css代码:
.header{
         position: fixed;
         top:0;
         width: 100%;
         height: 30px;
         background-color: red;
      }你学会了吗?
页: [1]
查看完整版本: css制作导航条固定在顶部教程