Ssebinblog.gir8.it·Feb 7, 2023 · 1 min readHow to make a scrolling text effect with CSS and JavaScriptI added this effect to my website and here's how I did it the HTML is really simple <div class="scrolling"> <p>i like</p> <p id="element">CSS</p> </div> and for the CSS part, we have this @keyframes scroll { 0% { transform: tran...00