Search code examples
htmlmarquee

How do I change the size of a marquee text?


How do I change the size of a marquee text?
Please help. The marquee code I'm using right now, is this:

<marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>


Solution

  • Just add CSS

    marquee {
      font-size: xx-large;
    }
    <marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>