Skip to content

Instantly share code, notes, and snippets.

@farithadnan
Created September 30, 2021 04:29
Show Gist options
  • Save farithadnan/6fbb8cb60b03a059f0fcab7e91b74626 to your computer and use it in GitHub Desktop.
Save farithadnan/6fbb8cb60b03a059f0fcab7e91b74626 to your computer and use it in GitHub Desktop.
Blur effect on a div element
div.blur {
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
width: 100px;
height: 100px;
background-color: #ccc;
}
<div class="blur">blur me please</div>
@farithadnan
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment