答案 0 :(得分:1)
问题是图像的容器有固定的位置,宽度/高度为100%,所以它可以占用整个页面。您可以将.gcontainer
放在具有固定位置且具有指定尺寸的div中:
#container {
position: fixed;
left: 0;
top: 0;
width: 400px;
height: 400px;
}
div.gcontainer {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
div.gcontainer img {
position: relative;
max-width: 100%;
max-height: 100%;
}

<div id="container">
<div class="gcontainer">
<img src="http://www.keenthemes.com/preview/metronic/theme/assets/global/plugins/jcrop/demos/demo_files/image1.jpg" />
</div>
</div>
&#13;
答案 1 :(得分:0)
在图像容器中将宽度或高度(仅限一个)设置为自动。
div.gcontainer img
{
position:relative;
width:100%;
height:auto;
}