flex display
を使用して2つのボタンを分離したいと考えています。`flex display 'を使って2つのボタンを分離する方法。
今、私はreact
を使用しています。
const style = {
textAreaStyle: {
width:'700'
},
buttonFatherStyle:{
display:'flex',
display:"-webkit-flex",
flexWrap: 'wrap',
justifyContent:'around',
backgroundColor:'red',
}
}
私jsx
:
<div style={style.buttonFatherStyle}>
<FlatButton style={{backgroundColor:'blue'}} type="submit" disabled={pristine || submitting}> submit </FlatButton>
<FlatButton style={{backgroundColor:'green'}} type="button" disabled={pristine || submitting} onClick={reset}> Clear
</FlatButton>
</div>
私のコードは動作しません。あなたは試してみてください
facebook.github.io/react-native/docs/flexbox.html
:
justifyContent: 'space-between'
あなたはあまりにもmarginRightとmarginLeftで遊ぶことができます
あなたは 'justifyContent: 'space-between''を試してみませんか? –
フレックスレイアウトに関するすべての情報はhttps://facebook.github.io/react-native/docs/flexbox.htmlで読むことができます。余裕を持たせることもできます(例:marginLeft:20、marginRight:20) –
'justifyContent: 'space-between''または' space-around'のどちらも問題なく動作します。いずれかがOKです。 – jiexishede