i have these 2 divs :
<div id="parent" style="border:1px silid;background-color:#fff">
<div id="child" style="position:fixed;width:100px;height:100px; border:solid 1px;">
</div>
</div>
Bascally i want the fixed child to stay inside the parent div , so the parent div should resize its height every time the page scrolls down (the child moves down).
Is there a css solution or should i make it in js ?
style="border:1px silid;"should bestyle="border:1px solid black;"– Tyzoid Aug 25 '12 at 0:10