如何使用`flex display`分隔两个按钮。

时间:2017-03-21 10:40:48

标签: css reactjs flexbox

我想使用flex display分隔两个按钮。

现在,我正在使用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>

我的代码不起作用。

2 个答案:

答案 0 :(得分:0)

试用此代码

flatbutton {
    flex-basis: 50%;
    text-align: center;
}

答案 1 :(得分:0)

作为文档:

facebook.github.io/react-native/docs/flexbox.html

你应该尝试:

justifyContent: 'space-between'

您也可以使用marginRight和marginLeft。 希望有所帮助