JSFiddle - React, Tailwind, and code Playground

by Ravindra Athreya

HTML

<marquee scrollamount="10">
    <p>This is basic example of marquee</p>
</marquee>

CSS

marquee {
    border:1px solid #eee;
    border-radius:5px;
    box-shadow:0 0 5px #eee;
    height:30px;
}

marquee p{
    margin-top:7px;
}