Is it possible to make the inner div visible even when the parent of the inner div has overflow:hidden set? I am trying to hide multiple slides by setting the parent or container element to overflow:hidden. However, I would like to display part of the inner "slide" even when it exceeds the boundaries of the parent. How can I achieve this, or should I rethink my approach entirely? If you have an example or solution, please provide it. Thank you.
<div id="slides" style="overflow:hidden; width:300px; height: 300px">
<div id="slide" style="height:300px; height:300px">
<div style="overflow:visible">
<img alt="" src="image.png" />
</div>
</div>
</div>