html 背景模糊div未覆盖整个屏幕

mrphzbgm  于 2023-03-11  发布在  其他
关注(0)|答案(2)|浏览(145)

我有一个名为overlay的div和一个名为signupContainer的容器。我希望覆盖div覆盖整个屏幕,但背景模糊。这是我的代码:

html, body {
    background-image: url('https://host.stcollier.repl.co/img.png');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 1000px;
    background-color: rgba(255, 255, 255 0.5);

}

.blur {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: -99;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
}

.signupContainer {
    padding-top: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 99;
    color: white;
}
<div class="blur"></div>

<div class="signupContainer">
  <h1>Sign Up</h1>
</div>

下面是它的外观:

请注意背景滤镜模糊没有覆盖整个屏幕,而只是覆盖了其他元素所在的点。为什么会出现这种情况?如何解决?

at0kjp5o

at0kjp5o1#

只要从第一条规则中删除html选择器,它就可以工作了。你不必要地应用了两个背景图像,这似乎导致了错误的渲染。

body {
    background-image: url('https://host.stcollier.repl.co/img.png');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 1000px;
    background-color: rgba(255, 255, 255 0.5);
}
sy5wg1nm

sy5wg1nm2#

这是因为背景的位置是相对的,所以它没有覆盖整个页面。
你可以用这个

.blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    z-index: -99;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
}

相关问题