Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The HTML <marquee>
element is used to insert a scrolling area of text. You can control what happens when the text reaches the edges of its content area using its attributes.
The <marquee>
element is obsolete and must not be used. While some browsers still support it, it's not required.
behavior
scroll
, slide
and alternate
. If no value is specified, the default value is scroll
.bgcolor
direction
left
, right
, up
and down
. If no value is specified, the default value is left
.height
hspace
loop
scrollamount
scrolldelay
truespeed
is specified.truespeed
scrolldelay
values lower than 60 are ignored. If truespeed
is present, those values are not ignored.vspace
width
onbounce
alternate
.onfinish
onstart
start()
stop()
<marquee>This text will scroll from right to left</marquee> <marquee direction="up">This text will scroll from bottom to top</marquee> <marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid"> <marquee behavior="alternate"> This text will bounce </marquee> </marquee>
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of '<marquee>' in that specification. | Living Standard | Make it obsolete in favor of CSS but define its expected behavior, for backward compatibility. |
HTML5 The definition of '<marquee>' in that specification. | Recommendation | Make it obsolete in favor of CSS but define its expected behavior, for backward compatibility. |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1 | Yes | 1 | 2 | 7.2 | 1.2 |
behavior |
1 | Yes | 1 | 2 | 7.2 | 1.2 |
bgcolor |
1 | Yes | 1 | 2 | 7.2 | 1.2 |
direction |
1 | Yes | 1 | 2 | 7.2 | 1.2 |
height |
1 | Yes | 1 | 2 | 7.2 | 1.2 |
hspace |
? | Yes | 3 | ? | ? | ? |
loop |
? | Yes | 3 | ? | ? | ? |
scrollamount |
1 | Yes | 1 | 2 | 7.2 | 1.2 |
scrolldelay |
1 | Yes | 1 | 2 | 7.2 | 1.2 |
truespeed |
No | Yes | 3 | 4 | No | No |
vspace |
? | Yes | 3 | ? | ? | ? |
width |
1 | Yes | 1 | 2 | 7.2 | 1.2 |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
---|---|---|---|---|---|---|---|
Basic support | ? | ? | Yes | 4 | ? | ? | ? |
behavior |
? | ? | Yes | 4 | ? | ? | ? |
bgcolor |
? | ? | Yes | 4 | ? | ? | ? |
direction |
? | ? | Yes | 4 | ? | ? | ? |
height |
? | ? | Yes | 4 | ? | ? | ? |
hspace |
? | ? | Yes | 4 | ? | ? | ? |
loop |
? | ? | Yes | 4 | ? | ? | ? |
scrollamount |
? | ? | Yes | 4 | ? | ? | ? |
scrolldelay |
? | ? | Yes | 4 | ? | ? | ? |
truespeed |
? | ? | Yes | 4 | ? | ? | ? |
vspace |
? | ? | Yes | 4 | ? | ? | ? |
width |
? | ? | Yes | 4 | ? | ? | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee