Utilizing semantic-ui-react in React, I am working on displaying cards with varying heights based on the amount of text. I am aiming for a pinterest style layout where each card's height adjusts according to the content it contains.
....
<Card.Content>
<Card.Header className="textheader">
<b>{this.props.tittle}</b>
</Card.Header>
</Card.Content>
<CardsExtra question="My Question goes here"/>
....
I would like the height of each card to reflect the length of the question within it. Currently, all cards default to the height of the tallest one, which is determined by the question with the most words.
Appreciate any help or suggestions you can provide. Thank you!