編碼的世界 / 優質文選 / 生涯

css 背景色鋪滿全屏幕


2021年12月20日
-   

方法一:給當前div設置定位
.g-index {
position: absolute;
width: 100%;
height: 100%;
background-color: #f2f2f2;
}

方法二:通過設置html,body的寬高,來實現
html,body{
width: 100%;
height: 100%;
}
.g-index {
width: 100%;
height: 100%;
background-color: #f2f2f2;
}

熱門文章