Can a block of text with an unknown height be aligned to the bottom right of a parent element with an unknown height, using only CSS? I have tried using flexbox, float, and absolute positioning, but haven't been able to find a solution.
There is an answer on StackOverflow (https://stackoverflow.com/a/18171538/4716464) that seems to work, but it appears to be strange and may have cross-browser compatibility issues.
The answer to "Floating an image to the bottom right with text wrapping around" on StackOverflow (https://stackoverflow.com/questions/19770925/floating-an-image-to-the-bottom-right-with-text-wrapping-around) only partially solves my issue, as the topic starter there has a known inner block size, whereas both the parent and child elements in my case are dynamic in size.