0

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')

Dhanapal
  • 350
  • 2
  • 7
  • 29

1 Answers1

1
<Grid.Column widescreen={1} computer={2}>
    Content here
</Grid.Column>

This is worked! Thanks

Dhanapal
  • 350
  • 2
  • 7
  • 29