如何在 Material UI 上固定高度?
How can I fix height on MaterialUI?
如何修复这条白线?enter image description here
如果我制作 height:100% 它看起来是这样的:enter image description here
在包含页面所有组件的主页组件中,如 App.js
添加一个 Box 元素并在其中添加一些样式。
<Box sx={{height:'100vh', background:'your_background'}}>
Your components
</Box>
如何修复这条白线?enter image description here 如果我制作 height:100% 它看起来是这样的:enter image description here
在包含页面所有组件的主页组件中,如 App.js 添加一个 Box 元素并在其中添加一些样式。
<Box sx={{height:'100vh', background:'your_background'}}>
Your components
</Box>