i have got 2 divs
<div id="first"></div>
<div id="second"></div>
#first
{
float:left;
width: 150px;
height: 100%;
position: fixed;
}
#second
{
float:left;
width: 1000px;
height: 100%;
}
when i zoom in page and scroll it right. 1st div will be above 2nd. How can i keep it fixed but not let it get above other divs?; (i want to make it fixed for scroll up/down, but not left/right)