Layout breaks when Material Ui grid wrapped in div element(当 Material Ui 网格包含在 div 元素中时布局中断)
问题描述
我使用 Material Ui Grid 元素构建了响应式仪表板.并且其中一个包含在 div 元素中的网格项目会破坏布局.
I have responsive dashboard build with Material Ui Grid elements.
And one of the grid items wrapped in div element which breaks the layout.
这里是带有 div 元素的游乐场 - https://codesandbox.io/s/basicgrid-material-demo-forked-pkkil?file=/demo.js
Here is playground with div element - https://codesandbox.io/s/basicgrid-material-demo-forked-pkkil?file=/demo.js
这里是没有 div 元素的游乐场,这应该是 div - https://codesandbox.io/s/b1wsf?file=/demo.js
Here is playground without div element, and this how it should be with div - https://codesandbox.io/s/b1wsf?file=/demo.js
div 元素不能被替换或删除...
div element cannot be replaced or removed...
有什么建议吗?
推荐答案
Mui Grid 组件的设计方式是 Grid container 应该始终是 Grid 的父级项目道具.Grid container 正在克隆 Grid item 并向其传递不基于反应上下文的附加配置.
Mui Grid component is designed the way that Grid container should always be parent of Grid item prop. Grid container is cloning Grid item and passing to it additional configuration it is not based on react context.
让这个工作的唯一明智的方法是删除 div.
Only sane way to get this working is to remove div.
或者为此提供自定义 css 样式以模拟网格间距.
Or provide custom css styles to this to emulate grid spacing.
这篇关于当 Material Ui 网格包含在 div 元素中时布局中断的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:当 Material Ui 网格包含在 div 元素中时布局中断
- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
