CSS-moving text from left to right

前端 未结 6 582
自闭症患者
自闭症患者 2020-12-19 05:52

I want to create an animated HTML \"marquee\" that scrolls back and forth on a website:

This is a marquee!
6条回答
  •  离开以前
    2020-12-19 06:30

    I like using the following to prevent things being outside my div elements. It helps with CSS rollovers too.

    .marquee{
        overflow:hidden;
    }
    

    this will hide anything that moves/is outside of the div which will prevent the browser expanding and causing a scroll bar to appear.

提交回复
热议问题