When designing a container, is it considered beneficial to assign each child within the container its own height property, even if the parent container has already been allocated a specific height? If not, are there alternate methods available for transferring the height of the parent container to select children without having to resort to explicitly using the `height: inherit;` property?
I am looking for a way to avoid manually assigning this property to each individual child element.