Answers for "rainbow text shadow animation"

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