0
点赞
收藏
分享

微信扫一扫

固定头部

大漠雪关山月 2022-07-27 阅读 59
编程语言

<div>
<header></header>
<main></main>
</div>

我们可以使用定位的两种方式来固定头部。

Fixed

header {
position:fixed;
top: 0;
width: 100%;
}

main {
margin-top: 50px;
}

Sticky

header {
position: sticky;
top: 0;
}

​​测试效果​​

举报

相关推荐

0 条评论