我有一个包含productpages的网站,刚刚发现Chrome和Internet Explorer之间看起来非常不同。示例页面: Website 在IE中,图像非常大。现在,如果我改变CSS,它也会在chrome上发生变化,看起来就像我想要的那样。
感谢您的时间,
Sjoerd
答案 0 :(得分:1)
我相信你只能为IE设置一个CSS
<!--[if IE]>
<link rel="stylesheet" href="ieCSS.css" />
<![endif]-->
另请参阅此链接How to target only IE (any version) within a stylesheet?
答案 1 :(得分:1)
您需要在图像上设置最大宽度。但是使用像素,而不是百分比!
.thumbnail.alignleft > img {
width: 100%;
max-width: 116px;
}
答案 2 :(得分:0)
.thumbnail.alignleft > img {
width: 100%;
max-width: 116px;
}
不确定为什么有人在没有任何理由的情况下对我的问题进行了投票,而是让本网站上的人真正帮助别人感谢!