Прозрачность, размытие, цветовые фильтры и другие эффекты используя backdrop-filter
https://web.dev/backdrop-filter/
https://web.dev/backdrop-filter/
web.dev
Create OS-style backgrounds with backdrop-filter | Articles | web.dev
Learn how to add background effects like blurring and transparency to UI elements on the web using the CSS backdrop-filter property.
/* good css */
.foo {
color: red;
@media screen and (max-width: 480px) {
color: blue;
}
}
/* bad css */
.foo {
color: red;
}
@media screen and (max-width: 480px) {
.foo {
color: blue;
}
}