I am trying to animate the text using keyframes in css :
my html code:
@keyframes animate {
0% {
content: "Animate"
}
50% {
content: "text using"
}
100% {
content: "CSS!!"
}
}
.change-text::after {
animation: animate 5s infinite;
}
<center>
<p class="change-text">
Text will change here
</p>
</center>
But the text is not changing, help me figure out what is wrong with my code?
<center>element has been obsolete for a decade or more.