HTML | Marquee direction attribute
The Marquee direction attribute in HTML is used to set the direction of scrolling. The default direction of scrolling is left. Possible values are up, down, left, right.
Syntax:
<marquees direction= up | down | left | right>
Attribute value:
- up
- down
- left
- right
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" loop = "" > Left </ marquee > < marquee class = "marq" bgcolor = "Green" direction = "right" loop = "" > Right </ marquee > </ div > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browsers supported by HTML Marquee direction attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera