I have an HTML dialog
tag full of content. I want the content to respond to its container's height, wrapping to create a new column when the content is larger than the container. I have boundaries on how tall the container can be, as well, for aesthetic reasons
I'm accomplishing this with flex-flow: column wrap
and that works fine to make the contents create a new column, but the containing dialog isn't resizing to contain it. Is there a way to make the dialog
tag grow to encompass the contents as they flow?