Answers for "css blur effect for image on the corners"

CSS
1

blur edges css

.blur-box {
    background-color: #555;
    box-shadow: 0 0 5px 10px #555;
}
Posted by: Guest on May-02-2021
5

blur image on hover

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

Browse Popular Code Answers by Language