gpt4 book ai didi

html - IE 和 Chrome/Mozilla 中的 Img 大小不同

转载 作者:太空宇宙 更新时间:2023-11-04 13:19:47 25 4
gpt4 key购买 nike

我有这个图片标签。图像大小在 IE 和 Chrome/Mozilla 中有所不同。它在 Chrome/Mozilla 中运行良好,但我发现在 IE 中图像大小几乎增加了 1000%。

<img src="{% static "/static/img/left_arrow.png" %}" alt="prev" height="15" width="15" />

我哪里出错了?

最佳答案

这是为了规范跨浏览器的图像查看 (directly from normalize.css),以及在一个方向或另一个方向上正确缩放图像。

最后一行是修复 IE 缩放图像的问题。

将其放入您的 CSS 文件中。

img {
border: 0;
-ms-interpolation-mode: bicubic;
max-width: 100%;
height: auto;
width: auto;
width: auto\9;
}

对于内联 CSS:

<img style="border: 0;-ms-interpolation-mode: bicubic;max-width: 100%;height: auto;width: auto;width: auto\9;" src="{% static "/static/img/left_arrow.png" %}" alt="prev" width="15" height="15" />

您不应该对比您想缩小到的图像大的图像执行此操作。用户将下载完整图像然后调整其大小,从而浪费带宽和 CPU。这个尺寸的图片没什么大不了的,但请记住。

关于html - IE 和 Chrome/Mozilla 中的 Img 大小不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19782063/

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