我注意到twitter bootstrap (2.2.1) 和Internet Explorer 中的广告库之间存在奇怪的冲突。
原来 bootstrap.min.css 中的这行导致问题并且图像不显示:
img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;}
当我删除这两个时,一切正常:
width:auto\9;height:auto;
但是,我没有删除那些我试图覆盖这些属性,但到目前为止这些都没有奏效:
.ad-gallery img{width:default;height:default;}
.ad-gallery img{width:none;height:none;}
.ad-gallery img{width:auto;height:auto;}
如何覆盖这些属性?
顺便提一句。google chrome 和 Mozilla firefox 没有任何问题。您可以从此处使用原始 bootstrap min css 文件检查示例,该文件不起作用。
这是从此处修改 bootstrap-modified.min.css 的工作示例。