0

我在 IE7 浏览器中遇到了伪元素(:before,:after,:last-child)的问题。

事实上,我想画一棵看起来像这样捕获的树(IE11):

在此处输入图像描述

但是当我在(IE7)上执行我的索引时让我呈现错误:

在此处输入图像描述

有关信息,我已经使用过 Selectivizr(它是一个 JavaScript 库,可让您利用 CSS3 选择器)但不适合我!

此代码只是一个示例,看起来像我使用的项目结构(struts2,dojo):

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Tree</title>
        <!--[if (gte IE 6)&(lte IE 8)]>
          <script type="text/javascript" src="selectivizr.js"></script>
        <![endif]-->
        <link href="demo1.css" rel="stylesheet"> 
    </head>
    <body>
        <div class="test">
            <div>
                <a href="#"> + </a>
                <a href="#"> Label A </a>
            </div>
            <ul class="recherche_non_rendu">
                <li>
                    <div class="test">
                        <div>
                            <a href="#"> + </a>
                            <a href="#"> Label A1 </a>
                        </div>
                        <ul class="recherche_non_rendu">

                            <li>
                                <div class="test">
                                    <div>
                                        <a href="#"> + </a>
                                        <a href="#"> Label A11 </a>
                                    </div>
                                </div>
                            </li>

                            <li>
                                <div class="test">
                                    <div>
                                        <a href="#"> + </a>
                                        <a href="#"> Label A12 </a>
                                    </div>
                                </div>
                            </li>
                        </ul>
                    </div>
                </li>
            </ul>
        </div>
    </body>
</html>

我的风格 css :

.test ul {
  padding:0;
  margin: 0; 
  margin-left:6px;
  list-style:none;
  background: #fff;
  color:#000;
  position:relative;
}

.test ul:before {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  border-left:1px solid #000;
}

.test li {
  margin:0;
  padding:0 16px; 
  line-height:2em; 
  font-weight:bold;
  position:relative;
}

.test li:before {
  content:"";
  display:block;
  width:10px; 
  height:0;
  border-top:1px solid #000;
  margin-top:-1px; 
  position:absolute;
  top:1em; 
  left:0;
}

.test li:last-child:before {
  background:white; 
  height:auto;
  top:1em; 
  bottom:0;
}

任何帮助将不胜感激。

4

0 回答 0