【发布时间】:2014-02-10 23:41:29
【问题描述】:
IE9 有一个奇怪的问题,它自己忽略了某些 CSS 规则。甚至 IE8 也能正确加载它。 IE 10 和所有更好的浏览器(如 FF 和 Chrome)也是如此。
css 正在加载“text/css”MIME。
例如,
IE9 未应用这些规则。我在开发人员工具栏 CSS 选项卡中找不到这些规则。
.B2B .info_cart { display: block; clear: both !important; }
.B2B .info_cart .priceDetail { font: 14px/22px Arial,Helvetica,sans-serif; padding-left: 3px; }
.B2B .info_cart .priceInfo { bottom: 2px; font-size: 10px; line-height: 24px; margin: 0 0 0 2px; overflow: hidden; padding: 0; position: absolute; word-wrap: break-word; }
.B2B .info_cart .info_vat { font-size: 10px; float: right; margin-top: 7px; }
相关的HTML:
<div class="info_cart clearfix">
<span class="spanBasketInfo"></span>
<span class="cartValue"></span>
<span class="cartShippingDetails"></span>
<span class="info_vat">
<span class="exc">exc. VAT</span>
<a href="#">(change)</a>
</span>
</div>
可能出了什么问题?
更新 这是我正在使用的 Doctype,如果有帮助的话。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xml:lang="sv" xmlns="http://www.w3.org/1999/xhtml" class=" js no-touch borderradius boxshadow textshadow opacity cssgradients csstransitions">
【问题讨论】:
-
JSFiddle 请..哦,哪些规则被忽略了?
-
如何包含您的 css 文件?
-
我已经提到了问题中的规则
-
您的规则意味着
info_cartdiv 的父级是.B2B,但这不会显示在您的HTML 中。我们需要一个实际的 JSFiddle 示例来自己测试。 -
你认为 CSS 是正确的?嗯,这是否意味着您实际上还没有验证它?
标签: html css internet-explorer internet-explorer-9