How can I make absolute
div (id 3) override other divs and do not enable overflow div parent (id 2)?
<div id="1" style="background: red; width: 400px">
<div id="2" style="position: relative; background: blue; padding: 2px; width: 150px; height: 150px; overflow-y: auto;">
<div id="3" style="position: absolute; top: 10px; right: 0; background: #eef; padding: 2px; width: 100px; height: 300px"></div>
</div>
</div>