HTML | Marquee scrollamount attribute
The Marquee scrollamount attribute in HTML is used to set the amount of scrolling at each interval in pixels. The default speed of the marquee value is 6.
Syntax:
<marquees scrollamount=number >
Attribute value:
- Number: Define the speed value.
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 = "" > scrollamount: default(6) </ marquee > < marquee class = "marq" Scrollamount = 10 bgcolor = "Green" direction = "left" loop = "" > scrollamount: 10 </ marquee > </ div > </ body > </ html > |
Output:
Supported Browsers: The browsers supported by HTML Marquee scrollamount attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera