Sure. Don't animate all the things...       #banner-message { background: #fff; border-radius: 4px; padding: 20px; font-size: 25px; text-align: center; /* transition: all 0.2s; */ margin: 0 auto; width: 75%; }   CSS and JS can't animate the same properties. If you need CSS transitions on an element you're animating with JS, you should explicitly list those properties. Using "all" can also impact performance because the browser has to watch for cha
    • Haha
    • Thanks
    • Like
    8