📜  html 如何确保标题始终在顶部 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:59.840000             🧑  作者: Mango

代码示例1
#header {
  position: fixed;
}

#content {
  margin-top: 100px;
}