Advertisements
Advertisements
Question
How will you scroll the text in HTML?
Long Answer
Solution
In HTML, a piece of text or image can be moved horizontally or vertically by using <marquee> tag. This feature makes a web page as more attractive.
- General format:
<marquee> Text or image to be scroll </marquee>
Attributes of <marquee> - Height and Width:
These attributes are used to set height and width of the marquee. The values should be either in pixels or in percentage of browser window. - Direction:
This is used to specify the direction of the movement of text or image. The text or image will move towards right to left by default. So, the default direction is left. The Possible values are ‘up’, ‘down’, ‘left’ or ‘right’. - Behaviour:
This attribute is used to specify the type of scrolling. The values are ‘scroll’, ‘slide’ and ‘alternate’. - Scrolldelay:
This attribute is used to define the time delay between each jump. The time unit should be in seconds. - Scrollamount:
This is used to define the speed of the scroll. - Loop:
This is for defining how many times the marquee element should repeat on the screen. The default value is ‘infinite’, which me the marquee element scrolls endlessly. - Bgcolor:
This is used to specify the background color to the marquee elements. - Hspace and Vspace:
This is for defining the horizontal and vertical space around the marquee. The value can be in pixels or percentage.
shaalaa.com
Scrolling Text Using <Marquee>
Is there an error in this question or solution?