How can I create a marquee effect?
With a small change of the markup, here’s my approach (I’ve just inserted a span inside the paragraph): .marquee { width: 450px; margin: 0 auto; overflow: hidden; box-sizing: border-box; } .marquee span { display: inline-block; width: max-content; padding-left: 100%; /* show the marquee just outside the paragraph */ will-change: transform; animation: marquee 15s linear infinite; … Read more