Skip to main content

Distortion Glitch Text Effect - CSS

 


Use multiple text-shadow properly in CSS on a text by comma separating the values.

DEMO

Distortion

CSS

h2 {
  color: darkorange;
  font-family: sans-serif;
  font-size: 3.5em;
  text-transform: uppercase;
  text-shadow:  -3px -3px 0  cyan, 3px 3px 0 pink;
}

Comments