JSFiddle - React, Tailwind, and code Playground
HTML
<marquee>wow old school marquee</marquee>
<p>wow css3 marquee fun!</p>
CSS
p{
-webkit-animation-name: marquee;
-webkit-animation-timing-function: linear;
-webkit-animation-duration:10s;
-webkit-animation-iteration-count: infinite;
margin: 0;
padding: 0;
overflow: hidden;
display: block;
white-space: nowrap;
}
@-webkit-keyframes marquee{
0%{
text-indent: 95%;
}
100%{
text-indent: -20%;
}
}