0

我在 IE 中看到一些奇怪的东西,我希望看到的背景图像没有出现。

这是我的CSS:

#grey.internal #leader p{color: #525051;}
#grey h1 {color: #bc35b7;}
#grey.internal #for .forcont{ border:none;margin:0;}
#grey #leader p {font-size: 18px; line-height: 32px; width: 760px; margin: 0 auto; }
#grey #leader ul.section-links {padding: 32px 0 62px 0; width: 700px; margin: 155px auto 0 auto;height: 100%; border: 1px red solid; }
#grey #leader ul.section-links li {display: inline-block; margin: 0 6%;}
* html #grey #leader ul.section-links li { /* for IE6 */ display: inline;}
*+html #grey #leader ul.section-links li { /* for IE7 */ display: inline;}
#grey #leader ul.section-links li h2 a {color: #525051; text-decoration: none; height: 100%;  border: 1px blue solid;}
#grey #leader ul.section-links li h2 a:hover {text-decoration: underline;}
#grey #leader ul.section-links li h2 a.payments {background: url('/_/img/icon-payments.png') no-repeat 0 0; padding: 135px 30px 0 0; }
#grey #leader ul.section-links li h2 a.identity {background: url('/_/img/icon-identity.png') no-repeat 8px 0; padding: 135px 50px 0 60px; margin-right: 20px;}
#grey #leader ul.section-links li h2 a.analytics {background: url('/_/img/icon-analytics.png') no-repeat 10px 0; padding: 135px 0 0 0;}

这是 html 块:

<section id="leader">
    <p>Lorem</p>
    <ul class="section-links">
        <li class="p-item"><div class="icont"><h2><a href="/mobile-payments/" class="payments">Payments</a></h2></div></li>
        <li class="i-item"><div class="icont"><h2><a href="/identity/" class="identity">Identity</a></h2></div></li>
        <li class="a-item"><div class="icont"><h2><a href="/mobile-analytics/" class="analytics">Analytics</a></h2></div></li>
    </ul>
</section>

这就是我在 IE(6-8) 中看到的: IE截图

这就是我在 Chrome 中看到的:

铬屏幕截图

我添加了边框只是为了让我知道发生了什么!

4

1 回答 1

2

这个问题与<section>标签有关。由于它是 IE <9 不支持的 HTML5,因此 section 标签将不包含任何内容(并自动关闭,从而使您的所有 css 无用)。将其更改为其他内容,或包含https://code.google.com/p/html5shiv/

于 2013-10-23T14:40:39.307 回答