靜態定位

元素的預設位置是 static。引用 MDN

此關鍵字允許元素使用正常行為,即它在流中的當前位置佈局。top,right,bottom,left 和 z-index 屬性不適用。

.element{
  position:static;
}