gpt4 book ai didi

html - chrome 和 Internet Explorer 11 之间的图像大小差异

转载 作者:太空宇宙 更新时间:2023-11-04 07:04:23 24 4
gpt4 key购买 nike

我正在为图像制作一个简单的网站添加,但 Internet Explorer 11 上的尺寸被计算得更小,并且图像之间的变化:

internet explorer image

但在 chrome 上运行良好

chrome image

这是图片的CSS:

.postImage {
padding: 0 0 0 15px;
height: 50px;
width: 50px;
border-radius: 2px;
}

提前致谢!

最佳答案

所以,在稍微修改一下并从 here 获得帮助之后,我让它跨浏览器工作。这看起来很奇怪,因为我设置了两次高度,但这是我对 IE11 预期的唯一方法。

父类:

.postBox{
height: 100px;
width: 220px;
margin-bottom:15px;
display: flex;
cursor :pointer;

/* to fix IE11 */
min-height:1px;
padding: 10px 0 0 0px;
}

子图像类:

.postImage {
padding: 0 0 0 15px;
border-radius: 2px;

/* to fix IE11 not working */
max-height:50px;
max-width:50px;
height: 50px;
}

关于html - chrome 和 Internet Explorer 11 之间的图像大小差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51735762/

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