Answers for "css blur html content"

CSS
0

css blur text

.blurry-text {
   color: transparent;
   text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
Posted by: Guest on January-12-2022
3

blur css

.mydiv { filter: grayscale(50%) }

/* Graut alle Bilder um 50% aus und macht sie um 10px unscharf */
img {
  filter: grayscale(0.5) blur(10px);
}
Posted by: Guest on August-07-2020

Browse Popular Code Answers by Language