我对z-index和定位感到困惑。我已经阅读了有关此问题和文章,并且一直在努力。

我正在尝试使用一个Jquery插件:“ Particleground”:https://github.com/jnicol/particleground/find/master

我已经使用了插件,并且在页面顶部得到了粒子。但是我的整个标题页已被下推,但我希望它显示在顶部。请帮忙!

最佳答案

使粒子容器:

position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 0;


和您的内容容器:

position: absolute;
top: 0;
left: 0;
width: 100%;
/* dont touch the height, it will adapt to the content */
z-index: 1;

09-13 02:31