Ant Design: How to make items have equal heights
For me display:flex
to every Col
worked.
Seems type="flex"
is no longer supported.
I've just set height="100%"
to Col's first child.
Yeah, the Ant Row type property with the value flex will help you achieve this.
Try something like this :
<Row type="flex">
<Col xs={12}>
</Col>
<Col xs={12}>
</Col>
</Row>