为什么固定的位置不适用于移动屏幕?

时间:2018-04-26 23:58:44

标签: html css position fixed

这只发生在移动版本上,在我点击它们的视频下面的部分我正在应用固定的位置,但它没有固定元素,我想也许是因为固定的位置是在媒体查询中,但我不知道,我在失去理智:(哈哈哈,如果你可以帮助我,我会把你的照片发给你。

https://monumento-studio.github.io/thrust/

1 个答案:

答案 0 :(得分:0)

你的z指数值很低 试试这个

    #nav {
  position: fixed;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3.125rem;
    background: transparent;
    z-index: 100;
}