我想在調整瀏覽器大小時保持圖像居中。調整大小時保持圖像居中
我用下面的代碼,但每次我調整瀏覽器,我的形象不守中心(X/Y)。它也應該與IE9一起工作。任何幫助,將不勝感激!
.container {
height: 580px;
width:700px;
margin: 0 auto;
z-index: 1;
overflow: hidden;
position: relative;
border:1px solid black;
}
.container img {
position: absolute;
left: -100%;
right: -100%;
top: -100%;
bottom: -100%;
margin: auto;
height: 580px;
}
像這樣https://jsfiddle.net/j08691/vx6v1b2d/1/embedded/result/? – j08691