Hello!
Is it posible to fit the height of a container to the height of the avaliable space in the page with props?
Hello!
Is it posible to fit the height of a container to the height of the avaliable space in the page with props?
Use a flex container and set position.grow : 1
.
Note that if you have two flex containers you can set a proportional grow.
FlexContainer_0 with position.grow : 1' FlexContainer_1 with
position.grow : 2.5'
Both containers will grow but FlexContainer_1 will grow at 2.5 times the rate of FlexContainer_0.
Ok, thanks! I prefer the column container for position control but I will try this one also when needed. Cheers