gpt4 book ai didi

css - ReactJS 样式化组件以全屏显示背景色

转载 作者:行者123 更新时间:2023-11-28 10:28:05 26 4
gpt4 key购买 nike

无论如何我可以告诉 React 组件全屏显示并且背景颜色为绿色。下面的代码不会使高度为 100%。

var rootStyle = {
backgroundColor : 'green',
color : 'white',
height : '100%'

}

class App extends Component {
render() {
return (
<div style={rootStyle}>
<Poll />
</div>
);
}
}

最佳答案

使 div 成为视口(viewport)高度的 100%。

var rootStyle = {
height: '100vh',
min-height : '100vh'
}

关于css - ReactJS 样式化组件以全屏显示背景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48329845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com