::before) for blurring.backdrop-filter: blur().To blur only the background image of a div block while keeping the content inside clear in Webflow, you'll need to use the CSS backdrop-filter feature.
blur-bg-div).
```css
<style>
.blur-bg-div {
position: relative;
overflow: hidden;
}
.blur-bg-div::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: inherit;
background-size: inherit;
background-position: inherit;
backdrop-filter: blur(10px);
z-index: -1;
}
</style>
```
blur(10px)) according to your design needs.
By using a pseudo-element and CSS backdrop-filter, you can successfully blur only the background image of a div block in Webflow, without affecting the content inside. Adjust the custom CSS as needed to fit your particular design requirements.