semantic-ui-react grid - 在隐藏“仅”列之后显示列的全宽
semantic-ui-react grid - display full width of column, after "only” columns is hidden
我想知道 在语义-ui-反应中是否可以使用相同的技术?在隐藏可选列的情况下,我希望主要内容网格列全宽。
与已接受答案中的代码相同:
<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 visibility and responsive width 部分。
我想知道
与已接受答案中的代码相同:
<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 visibility and responsive width 部分。