随着孩子的增加,IE 7抵消增加

时间:2013-06-14 09:33:56

标签: html css internet-explorer-7

我的应用程序中有一个非常奇怪的错误。我在哪里逐一展示问题清单。当在IE 7中打开页面时,具有随着问题增加的偏移的问题。 enter image description here

我找不到问题。我尝试过很多css更改。但他们都没有成功! 请帮帮我。

每个问题div的css代码

.questions > .question {
display:block;
padding-bottom: 30px;
padding-left: 40px;
position: relative;
clear: both;
margin: 0 0 1px 0;
left: 0px;
_left: 0px;
/*  border-left: 5px solid white; */
}

2 个答案:

答案 0 :(得分:0)

检查您的HTML,看起来标签未正确关闭。

大多数现代浏览器会在渲染页面时对此进行更正,但IE7可能非常挑剔。

此外,请确保您的网页处于标准模式(通过设置有效的DTD),否则IE7将无法识别>直接子选择器。

答案 1 :(得分:0)

所有.question类都在.questions div中。正确?

尝试这个怎么样?没有.questions >

.question {
    display:block;
    padding-bottom: 30px;
    padding-left: 40px;
    position: relative;
    clear: both;
    margin: 0 0 1px 0;
    left: 0px;
    _left: 0px;
   /*  border-left: 5px solid white; */
}