Blurring only the background image of a div block in Webflow while keeping the content sharp can be a bit tricky. Here's how you can achieve that:
blurred-background).
<style> tags in the "Head" code section:```
<style>
.blurred-background:after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: inherit;
filter: blur(10px);
z-index: 0;
}
.blurred-background > * {
position: relative;
z-index: 1;
}
</style>
```
relative to allow the pseudo-element to overlay correctly.
Blurring only the background image in Webflow involves using a pseudo-element which replicates the background and applies a blur filter, while the content remains crisp with an adjusted z-index.