📜  如何停止固定位置移除流程 - 无论代码示例

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

代码示例1
.main-header{
  grid-column: 1/2;
  grid-row: 1/3;
  /* Here i want this to be fixed (scrolling should not have any effect)*/
  position: fixed;
  top: 0;
  height: 80px;
}
.main-content {
  padding-top: 100px;
  width: 100%;
  float: left;
}