HTML | Marquee behavior attribute
The Marquee behavior attribute in HTML is used to set the behavior of scrolling. The default value is scroll.
Syntax:
<marquee behavior=slide >
Attribute value:
- Scroll:
- Slide:
- Alternate
Example:
<!DOCTYPE html> < html > < head > < title >Marquee Tag</ title > < style > .main { text-align: center; } .marq { padding-top: 30px; padding-bottom: 30px; } </ style > </ head > < body > < h1 style = "color:green; text-align:center;" >GeeksforGeeks</ h1 > < div class = "main" > < marquee class = "marq" bgcolor = "Green" direction = "left" behavior = scroll loop = "" > Scroll </ marquee > < marquee class = "marq" bgcolor = "Green" behavior = alternate direction = "left" loop = "" > Alternate </ marquee > </ div > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browsers supported by HTML Marquee behavior attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera