IE7强标记的行为类似于块元素

时间:2013-01-03 17:00:39

标签: html internet-explorer-7

我有这个结构:

<li>
<strong>If the Technology Developer and Analyst Intern Program - Consumer Banking Technology & Operations (CBT&O) is NOT conducting interviews on your campus,<strong> please apply below between November 1st and January 2nd.
</li>

在所有浏览器中它看起来很好,但在IE7(和IE7兼容模式)看起来像screenshot。(http://screencast.com/t/kK4Ro9Gs

2 个答案:

答案 0 :(得分:0)

似乎<strong>元素看起来像IE7中具有固定宽度的块。我建议您嵌入modernizrcss reset,这样就不会发生这种情况。

如果它不起作用,请尝试将css赋予强元素,可能类似于display:inline; float:left, width:100%

我没有网站乱七八糟,所以你必须找到办法。

答案 1 :(得分:0)

我发现了这个问题。 IE7自动为强元素设置zoom:1。 IN用zoom:normal覆盖它并修复它。