How to create 'widescreen' and 'computer' class in same grid using Semantic UI

101 views Asked by At

How to create more than one screen size in the same grid like below

<Grid.Column width={1} only='widescreen' width={2} only='computer' verticalAlign='middle' centered>
    Content here
</Grid.Column>

This is not working. It's always taking the last given style (width={2} only='computer')

1

There are 1 answers

0
Dhanapal On BEST ANSWER
<Grid.Column widescreen={1} computer={2}>
    Content here
</Grid.Column>

This is worked! Thanks