htmlcss

The CSS marquee-speed property determines how fast the content scrolls. The actual speed depends on the user agent and the type of content. But, for a given user agent and a given element, the following must always be true: slow < normal < fast.

Values

Value Description
slow The marquee moves at a slow speed.
normal The marquee moves at the regular speed. This is the initial value.
fast The marquee moves at a fast speed.


HTML example:

<div style="marquee-speed:fast;">
TEXT
</div>


CSS example:

div {
     marquee-speed:fast;
}

See Also

External Links