Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 366 Bytes

固定头部.md

File metadata and controls

35 lines (27 loc) · 366 Bytes

固定头部

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

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

Fixed

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

main {
  margin-top: 50px;
}

Sticky

header {
  position: sticky;
  top: 0;
}

测试效果