Fixed div in scrollable div
#container { position:absolute; top:150px; left:150px; width:600px; height:500px; overflow:hidden; border:3px dashed #ffff00; padding:0px; } #this_scroll { position:absolute; top:0px; right:0px; width:99%; height:99%; overflow:scroll; border:2px solid #000; margin:1px; background:#B0BDCE; } #fix_close { position:absolute; top:2px; right:21px; width:90px; height:30px; overflow:hidden; border:2px solid #660099; z-index:10; background:#8C8C8C; } <div id="container"> <div id="this_scroll"> <p>some yxyxyx</p><p>some yxyxyx</p> </div> <div id="fix_close"> close </div> </div>
source share