Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对我正在开发的网站有疑问。主页底部的网站图像在 Firefox、Chrome 等中看起来很好。但是在 IE 中,图像看起来比正常尺寸大。你能建议可能是什么问题。我无法弄清楚问题所在。
里面有bootstrap.min.css一个 img 属性,上面写着:img { width: auto; }.
bootstrap.min.css
img { width: auto; }
要在 IE 中解决此问题,您应该避免在 IE 中使用“width”标签
<img width="100">
并使用
<img style="width: 100px" />
相反,它将覆盖默认样式,bootstrap.min.css因为 IE 无法识别没有度量的值 (px)