#html
Вопрос:
На моем теге «тело» я поместил фоновое изображение и хотел сделать на нем размытие, за исключением того, что при прокрутке размытие отключено
html, body {
width: 100%;
height: 100%;
}
body {
padding: 0;
margin: 0;
backdrop-filter: blur(15px) grayscale(25%);
-webkit-backdrop-filter: blur(15px) grayscale(25%);
background-size: cover;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body:before {
content: '';
background-color: #000;
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
opacity: .6;
}
Ответ №1:
Я нашел это, я просто должен был это сделать :
До :
html, body {
width: 100%;
height: 100%;
}
После :
html, body {
width: fit-content;
height: fit-content;
}