JSFiddle - React, Tailwind, and code Playground

by darkajax

HTML

<div class="marquee">Test Text</div>

CSS

.marquee {
    overflow: auto;
    white-space: nowrap overflow-style: marquee;
    marquee-style: slide;
    marquee-loop: infinite;
    overflow-x: -webkit-marquee;
    -webkit-marquee: backwards medium infinite scroll normal;
 
/* webkit-maquee: direction(ahead|auto|backwards|down|forwards|inherit|left|reverse|right|up) increment(small|medium|large) repetition(infinite |integer) style(alternate|inherit|none|scroll|slide) speed(slow|normal|fast) */
}