gpt4 book ai didi

css - 在固定大小的 div 中垂直对齐居中图像

转载 作者:技术小花猫 更新时间:2023-10-29 10:13:27 24 4
gpt4 key购买 nike

我有一个 145px X 145px 的 div。我在这次潜水中有一个 img。 img 可以是任何大小(最长边为 130px)。我希望图像在 div 中垂直居中。我尝试过的所有内容都适用于大多数浏览器,但不适用于 IE7。我需要可以在 IE7 中运行的东西。

最佳答案

这是一个跨浏览器的解决方案:

<div class="img-container"><img src="picture.png" class="cropped"/></div>


div.img-container {
width: 390px;
height: 211px;
position: relative;
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
img.cropped {
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
}

关于css - 在固定大小的 div 中垂直对齐居中图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5005244/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com