📜  如何让 div 填满屏幕 - CSS 代码示例

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

代码示例2
.section{
  position: absolute /*relative and fixed elements also works*/;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}