我有一个非常简单的布局,我需要在宽屏幕上并排放置两个按钮。然而,我需要它们之间有大约 10 像素的距离,不幸的是,添加边距会将按钮推到一边。我认为添加justify='space-between可以解决这个问题,但它没有任何作用。
这就是我的代码的样子:
const MyComponent = () => (
<div style={{ width: 500 }}>
<div style={{ width: '100%' }}>
<Grid container justify='space-between'>
<Grid item xl={6} lg={6} md={6} sm={12} xs={12}>
<Button variant='contained'>
Left Side Button
</Button>
</Grid>
<Grid item xl={6} lg={6} md={6} sm={12} xs={12}>
<Button variant='contained'>
Right Side Button
</Button>
</Grid>
</Grid>
</div>
</div>
)
结果如下:
不管怎样,我怎样才能在它们之间添加大约 10 像素而不让它们也被推开 10 像素呢?
守着星空守着你
相关分类