0

我的应用程序中有非常奇怪的错误。我在哪里一一显示问题列表。当在 IE 7 中打开页面时,具有偏移量的问题会随着问题的增加而增加。 在此处输入图像描述

我找不到问题。我尝试了很多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; */
}
4

2 回答 2

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; */
}
于 2013-06-14T09:59:37.287 回答
0

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

大多数现代浏览器会在呈现页面时纠正此问题,但 IE7 可能非常挑剔。

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

于 2013-06-14T09:41:32.263 回答