Answers for "css to make text blurry"

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
1

make blur with css

/* Add the blur effect in CSS */
  filter: blur(8px);
  -webkit-filter: blur(8px);
Posted by: Guest on June-15-2021

Browse Popular Code Answers by Language