I am facing an issue with aligning a single child element to the bottom of a holder div that has fixed dimensions. Currently, I have another element with the same height as the container, which helps in alignment at the bottom. However, when this second element is not present, the single child element sticks to the top regardless of the rules applied.
Is there a way to vertically align a single child element to the bottom of a container?
UPDATE
While preparing to share the code I'm working with, I managed to find a solution and implemented it. The main challenge was related to positioning rules and using display: inline-block on the child elements. That pretty much sums up my experience...