It's been a few months since I last worked on CSS, so I might be overlooking something simple. I've been struggling to find a solution to my problem, no matter how hard I try. Here is the issue:
Below is a simplified version of my code:
<div id="wrapper" style="position: fixed; overflow: hidden; height: 100%; width: 200px;">
<div id="test" style="position: absolute; margin-left: -200px;"></div>
</div>
In essence, I need the inner div "test" to extend 200px outside the outer div "wrapper" to the left. The challenge arises from the fact that the wrapper has overflow:hidden property set, restricting elements from going beyond its boundaries. However, I cannot remove the overflow:hidden as it is required for a JavaScript plugin I am using.
Are there any alternative solutions or workarounds for this situation? Thank you!