我正在使用 jQuery 在单击后更改图像的大小。无论单击后图像的大小如何,如何将关闭按钮保留在右上角。 JSFIDDLE
我的 CSS
#full_image {
width: 0px;
height: 0px;
left: 0px;
position: relative;
opacity: 1;
z-index: 9;
}
#full_image img {
background: url("zoom-on.png") no-repeat;
background-position: 5px 5px;
left: 0px;
width: 339px;
height: 211px;
position: relative;
overflow: hidden;
}
#full_image .full_close{
background: url("zoom-on.png") no-repeat;
top: 10px;
cursor: pointer;
height: 29px;
opacity: 1;
position: absolute;
width: 29px;
z-index: 999;
right: 0px;
}
我的 html
<div id="full_image"><img src=""/>
<span> <a href="#" class="full_close"></a></span>
</div>
问题是我可以将图像保留在#full_image 中,但我需要将它包含在#full_image img 中