用IE打开看
下面菜单被下面一条挡住了,真是很奇怪文件下载地址:http://pan.baidu.com/share/link?shareid=1914699738&uk=3355734481有谁帮看看 

解决方案 »

  1.   

    position:relative;
     <DIV style="VISIBILITY: hidden;position:relative;" id=subdiv class=subsystem>
      

  2.   

    把要在上面的层设置样式 z-index:999999
    把要在下面的层设置样式 z-index:1
      

  3.   

    css属性设置的位置我不清楚你是怎么设置的CSS属性是在控件中写的还是别的地方,我给你个参考
       <select style=" z-index:1"><option> </option></select>
        <div style=" z-index:-1">
     <a>test</a>
        </div>
      

  4.   

    没下控件 你看看你 z-index 或者 DIV高度,宽度之类的 是否都有设定正确。
      

  5.   

    郁闷啊,看来看去,就是不知道哪里有问题
    但chrome下又是正常的
      

  6.   

    我仔细的看了下你的程序在style程序里已经明确定义了
    z-index属性
    .subsystem
    {
        width: 140px;
        position: absolute;
        z-index: 99999;    top: 90px;
        background-color: red;
        border-right-style: solid;
        border-bottom-style: solid;
        border-left-style: solid;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-right-color: #7295b9;
        border-bottom-color: #7295b9;
        border-left-color: #7295b9;
    }
    你所说的挡住是指右侧吗?你把宽度减少点就行了.
      

  7.   


    晕。。谢谢,我也查到了要调整下面的z-index。谢谢