#Flex Group with all the same height

5 messages · Page 1 of 1 (latest)

crude leaf
#

I am trying to have 2 components with the same height inside a Group. But even if I set the props height to 100%, it's not working, it is a bug ?

weary dirge
#

this is expected in CSS. for this to work, the parent component must have a specified height and the child components must be of type block element in order to the height have any effect.

crude leaf
#

Without a specified height, it is not possible ? All divs should have the height of the biggest one no ?

#

Ok, got it, my inner divs was also flex boxes. I fixed it by wrapping them inside a Box

#

Thank you :)