2 回答
TA贡献1810条经验 获得超5个赞
min-height:100%; height:100%从html,bodyCSS 部分中删除属性: 。应该运作良好。
html, body {
background-color: rgb(96, 174, 238);
margin: 0px;
overflow: auto;
}
TA贡献1829条经验 获得超9个赞
天哪,我修好了!因此,我必须将 #mainGrid 上的“height”更改为“min-height”。另外值得注意的是,还必须保留 html 和 body 标记中的 height 属性,因为它们是父级,并且 margin = 0px ,因此 #mainGrid 将拉伸到顶部和底部。这是新的工作 CSS:
html, body {
background-color: rgb(96, 174, 238);
margin: 0px;
overflow: auto;
height: 100%;
}
/*----Main grid area ----*/
#mainGrid {
background-color: rgb(233, 233, 233);
border-style: none groove none groove;
margin: 0 100px 0 100px;
display: grid;
grid: 'appHeader settingsDiv'
'products products'
'addProdBtn grandTotals';
align-content: start;
min-height: 100%;
}
- 2 回答
- 0 关注
- 106 浏览
添加回答
举报