Published
- 1 min read
blur image on hover
The solution for this is noted below
blur image on hover
Solution
.img:hover{
backdrop-filter: blur(10px);
filter: blur(4px);
transition: 0.5s ease;
}
Try other methods by searching on the site. That is if this doesn’t work