Aşağıdaki kod parçacığını kullanarak sağ altta 200x200 sabit bir resim tutuyorum sayfamda. Ama resimin köşesinde X kapatma tulu olup basanın kapatabilmesini istiyorum yardımcı olur musunuz ?
<style>
#sabit
{
z-index:9999;
position:fixed;
_position:absolute;
bottom:50px;
right:0px;
clip:rect(0 100 85 0);
_top:expression(document.documentElement.scrollTop +document.documentElement.clientHeight-this.clientHeight);
_left:expression(document.documentElement.scrollLe ft + document.documentElement.clientWidth - offsetWidth);
}
</style>
<div id="sabit" >
<a href=""><img src="resim.gif" alt="" border="0" width="200px" height="200px" /></a>
</div>