Box 分组
对于大多数 CSS 实用程序来说,Box 组件能够作为一个包装组件来使用。
The Box component packages all the style functions that are exposed in @mui/system
.
示例
查看调色板样式功能。
sx
属性
All system properties are available via the sx
prop. 同时,您也可通过sx
属性指定任何您想添加的 CSS 规则。 下面是一个如何使用的示例:
Press Enter to start editing
Press Enter to start editing
当所需的更改与新的 DOM 元素分开时比较有效。 例如,您可以使用这个方法来更改边距。
但是,有时您的目标是下层的 DOM 元素。 例如,你可能想要更改 Button 组件的边框。 Button 组件已经定义好了它自己的样式。 所以使用 CSS 继承是于事无补的。 To workaround the problem, you can use the sx
prop directly on the child if it is a MUI component.
-<Box sx={{ border: '1px dashed grey' }}>
- <Button>保存</Button>
-</Box>
+<Button sx={{ border: '1px dashed grey' }}>保存</Button>
对于非 MUI 组件,使用 component
属性。
-<Box sx={{ border: '1px dashed grey' }}>
- <button>Save</button>
-</Box>
+<Box component="button" sx={{ border: '1px dashed grey' }}>Save</Box>
System属性
作为一个 CSS 实用组件, Box
也支持所有 system
属性。 您可以直接在组件上使用它们作为 prop。 例如,margin-top:
<Box mt={2}>