Two Overlapping divisions, but upper one is unscrollable
- by FREAKENGINEER
I have two divisions in my html page with their respective css
<html>
<head>
#lowerone
{position:absolute; bottom:25px; right:25px; height:300px; width:300px;}
#upperone
{position:absolute; bottom:25px; right:25px; height:300px; width:300px; overflow:scroll;}
</head>
<body>
<div id="lowerone">
</div>
<div id="upperone">
<img src="/bg.3.jpg" />
</div>
</body>
</html>
But the upper div i.e. the UPPERONE is unscrollabe..
How to make it scrollable?