semantic-ui-react grid - 在隐藏“only”列之后显示列的全宽

时间:2017-08-04 07:40:26

标签: semantic-ui-react

我想知道this在语义 - 反应中是否可以使用{{3}}相同的技术?在隐藏可选列的情况下,我希望主内容网格列全宽。

1 个答案:

答案 0 :(得分:0)

与接受的答案中的代码相同:

<Grid>
  <Grid.Column computer={4} only='computer'>
    (Optional content only for computers sized screen)
  </Grid.Column>
  <Grid.Column tablet={16} computer={12}>
    (Main Content)
  </Grid.Column>
</Grid>

查看文档的device visibilityresponsive width部分。