I'm working with a div structure where the outer div has the following CSS properties:
position: relative;
overflow: hidden;
min-heigth: 450px;
Inside this outer div, there is another div with the following CSS properties:
position: absolute;
top: 10px;
right: 10px;
The inner div's content exceeds the minimum height set for the outer div, causing it to clip the bottom of the inner div. How can I make sure that the outer div adjusts its height dynamically based on the content of the inner div?
Any suggestions or solutions would be greatly appreciated.