我在 div 中有一个图像。我希望图像调整大小以适合 div,并水平和垂直居中。我想要一个适用于 ie >= 8 的解决方案。
问问题
125549 次
4 回答
46
这是一种方法:
在这里小提琴:http: //jsfiddle.net/4Mvan/1/
HTML:
<div class='container'>
<a href='#'>
<img class='resize_fit_center'
src='http://i.imgur.com/H9lpVkZ.jpg' />
</a>
</div>
CSS:
.container {
margin: 10px;
width: 115px;
height: 115px;
line-height: 115px;
text-align: center;
border: 1px solid red;
}
.resize_fit_center {
max-width:100%;
max-height:100%;
vertical-align: middle;
}
于 2013-06-26T12:53:05.590 回答
32
仅在 Chrome 44 中测试。
示例:http ://codepen.io/hugovk/pen/OVqBoq
HTML:
<div>
<img src="http://lorempixel.com/1600/900/">
</div>
CSS:
<style type="text/css">
img {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
max-width: 100%;
max-height: 100%;
}
</style>
于 2015-08-11T06:12:01.087 回答
6
不支持 IE
更多信息在这里:我可以使用吗?
.container {
overflow: hidden;
width: 100px;
height: 100px;
}
.container img {
object-fit: cover;
width: 100%;
min-height: 100%;
}
<div class='container'>
<img src='http://i.imgur.com/H9lpVkZ.jpg' />
</div>
于 2019-09-11T14:14:10.150 回答
2
解决方案
<style>
.container {
margin: 10px;
width: 115px;
height: 115px;
line-height: 115px;
text-align: center;
border: 1px solid red;
background-image: url("http://i.imgur.com/H9lpVkZ.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
</style>
<div class='container'>
</div>
<div class='container' style='width:50px;height:100px;line-height:100px'>
</div>
<div class='container' style='width:140px;height:70px;line-height:70px'>
</div>
于 2015-07-18T20:46:08.173 回答