I would like to set the height of an element. It should be the height of the highest child element.
Is there something like:
Parent {
height: max(child1.height, child2.height)
}
Alternatively something like:
Parent {
height: stretchToChildren
}