I don't know how to limit the height from scroll div without fixing the max-height.
Here is the situation:
<div>
<div class="img-item"><img></div>
<div class="scroll-item"></div>
</div>
I want to limit my scroll-item div to the height of my img-item.
display: flex doesn't work because it gives the height of the heighest div (which is the scroll item) height:100% and auto don't work neither.
So i have no idea how to do that without fixing the height (ex: 200px).
See example fiddle.
Do you have an idea?
Well I guess this is what you are looking for- wrap the contents of the scroll item into an
absolute
ly positioned box so that the scroll item does not get to determine the height.Example:
Check this out and let me know your feedback on this. Thanks!