使用transform后z-index失效的解决方法

Posted justsilky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用transform后z-index失效的解决方法相关的知识,希望对你有一定的参考价值。

transform作用的元素增加translateZ,父级元素增加 transform-style: preserve-3d;

<div class="father">
    <div class="child"></div>
</div>

style {
    .father {
        transform-style: preserve-3d;  
    }
   .child {
       transform: translateZ(1px);
   }
}

 

以上是关于使用transform后z-index失效的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

解决IE,z-index失效

ie7下z-index失效问题解决方法

ie7下z-index失效问题解决方法(详细分析)

a标签失效的处理

一个关于css的问题,iOS层级失效怎么办

webkit-transform 覆盖 Chrome 13 中的 z-index 排序