Answers for "how to make picture background blur"

CSS
2

blur image on hover

.img:hover{
      backdrop-filter: blur(10px);
      filter: blur(4px);
      transition: 0.5s ease;
}
Posted by: Guest on July-23-2021
1

add blur background css

backdrop-filter: blur(5px);
Posted by: Guest on October-30-2020

Code answers related to "how to make picture background blur"

Browse Popular Code Answers by Language