How to scroll text in horizontal or vertical manner in HTML?
I want to implement text scrolling for latest news section in web page.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.

<marquee>Enter your text </marquee > |
Roshan GuragainPosted Nov 4, 2016, 3:32 PM
For vertical scroll from down to up:
<1 direction="up">This text will scroll from bottom to up1>
If you want to scroll from up to down, change the direction to "down"
From left to right:
<1 direction="right">This text will scroll from left to right1>
If you want to scroll from right to left, change the direction to "left"
Prakash KumarPosted Oct 31, 2016, 11:49 PM