Answers for "text shadow rgb animation"

CSS
1

text shadow effect

//offset 2px right and down with a 5px defusion of gray
h1 {
  text-shadow: 2px 2px 5px gray;
}
Posted by: Guest on June-30-2020
0

rainbow text shadow animation

.confirm_selection {
    animation: glow .5s infinite alternate;
}

@keyframes glow {
    to {
        text-shadow: 0 0 10px red;
    }
}

.confirm_selection {
    font-family: sans-serif;
    font-size: 36px;
    font-weight: bold;
}
Posted by: Guest on August-16-2021

Browse Popular Code Answers by Language