meat
火狐狸
火狐狸
  • UID35020
  • 注册日期2011-01-06
  • 最后登录2024-02-19
  • 发帖数267
  • 经验200枚
  • 威望0点
  • 贡献值106点
  • 好评度16点
阅读:1248回复:1

fx29以后的版本地址栏 #urlbar 被遮挡【已解决】

楼主#
更多 发布于:2014-07-03 23:13
隔壁也发了,可能有人不逛那边,这里也发一个:

#urlbar {
        transform: translateY(30px)!important;
        z-index: 100000 !important;
}
*{overflow:visible!important;}
第一行是移动 #urlbar向下 30像素,第二行是把全局的overflow都改成 visible,我还把urlbar的 z-index设成很大了,还是会被奇怪的东西遮挡。如图:

图片:Capture.PNG



但是,如果移动的是它的父元素,则是正常的,
#urlbar-wrapper {
        transform: translateY(30px)!important;
        z-index: 100000 !important;
}
*{overflow:visible!important;}
如图:

图片:Capture2.PNG




到底区别在哪里。
游客

返回顶部