React(semantic-ui-react)でsemantic-uiを使用してカードを表示しています。私は、カードがテキストの量に基づいて異なる高さを持つ、pinterestスタイルのレイアウトが必要です。PinterestレイアウトのReact-Semantic-UIカード
....
<Card.Content>
<Card.Header className="textheader">
<b>{this.props.tittle}</b>
</Card.Header>
</Card.Content>
<CardsExtra question="My Question goes here"/>
....
私が望むのは、カードの高さは、より多くの単語を含む質問のために増加する必要があります。現在、すべてのカードは、最大高さ(問題の単語の最大数)を持つものと同じ高さをとります。
ありがとうございます。