Skip to content Skip to sidebar Skip to footer

Html Scrolling Text

I now there is a way to create scrolling text into a html page(Like the stockmarket pages), without the need of javascript or similar, but i forgot how the name of the tag that did

Solution 1:

Do you mean the HTML <marquee> tag?

I wouldn't use it though. It is deprecated by the W3C and not advised by them for use.

Read more here.

Alternatives could be CSS3 animation or CSS3 marquee, but this isn't supported in all browsers.

Read here or here

Solution 2:

See CSS overflow, overflow-x, overflow-y properties (values scroll or auto).

-edit-: Okay, misunderstood the question. Agreed with <marquee>.

Solution 3:

<marquee> tag, </marquee>

Though it is non standard tag, it is supported by all major browser

Solution 4:

It is the MARQUEE tag.

But do not use it as it is considered Evil.

Solution 5:

I believe it's the marquee tag. Example guide on use here

Post a Comment for "Html Scrolling Text"