gpt4 book ai didi

javascript - ReactJS:为什么 CSS Flexbox 的 alignItems 不起作用?

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

在 ReactJS 中,使用 Material-UI 的 <TextField/> http://www.material-ui.com/#/components/text-field ,我试图让所有的 float 都向左,但在两者之间间隔开,但 alignItems 不起作用。它只是向左浮动,中间没有间隔。

可能是什么问题?

render() {

return (
<div style={{display: 'flex', flexFlow: 'row wrap', alignItems: 'stretch'}}>
<div>
<TextField/>
</div>
<div>
<TextField/>
</div>
</div>
)
}

最佳答案

您没有使用正确的属性。在行上下文中,您应该使用 justify-content 将元素放置在 x 轴上。

render() {
return (
<div style={{display: 'flex', flexFlow: 'row wrap', justifyContent: 'space-between'}}>
<div>
<TextField/>
</div>
<div>
<TextField/>
</div>
</div>
)
}

关于javascript - ReactJS:为什么 CSS Flexbox 的 alignItems 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39112554/

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