Home  »  CodeSnippets   »   How to Blur Background Color in CSS Snippet

How to Blur Background Color in CSS Snippet

Posted: March 5, 2022 | by Michael Bright

Example code of how to blur background color in CSS.

div {
   background: rgba(255,255,255,0.5);
   backdrop-filter: blur(5px);
}

Found this article interesting? Follow Brightwhiz on Facebook, Twitter, and YouTube to read and watch more content we post.