Perspective禁用位置:在firefox 31 - 35中修复

时间:2014-07-23 17:22:39

标签: css firefox position fixed

今天我已将Firefox更新为版本31.此后,perspective会禁用任何子级的固定位置。它在早期版本的Firefox中没有发生过,也没有在Chrome中发生过。

Fiddle
  FF 31-35

是打算行为还是错误?以及如何避免它?

1 个答案:

答案 0 :(得分:0)

尝试使用此设置:

.perspective {
    width: 100%;
    height: 100px;
    position: fixed;
    perspective: 500px;
    top: 0;
}

这将使容器保持在顶部并固定 工作小提琴:Fiddle