CSS 中设置100% Height 的背景色
首先将html,body的height都设置100%。
同时React 根元素高度也设置100%。
html, body, #root {
height: 100%;
}
之后,就可以设置全屏幕的背景颜色等等:
body {
font-family: Raleway, sans-serif;
margin: 0;
font-size: 1.4em;
background: #dfdfdf;
color: #333;
}
React 项目中,App的高度也设置100%
.App {
min-height: 100%;
}


浙公网安备 33010602011771号