I use Ant Design in my react project. When I use the Row, I want all the columns in the Row have the same height.
What happens now:
What I expect:
Do you guys have any idea how to do it?
I use Ant Design in my react project. When I use the Row, I want all the columns in the Row have the same height.
What happens now:
What I expect:
Do you guys have any idea how to do it?
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>