Text move still from its points from left to right as it is possible by marquee tag or i use jquery for this
<marquee direction="left">this is text we provide it</marquee>
<marquee direction="left">this is text</marquee>
Text move still from its points from left to right as it is possible by marquee tag or i use jquery for this
<marquee direction="left">this is text we provide it</marquee>
<marquee direction="left">this is text</marquee>
If you want left to right, the direction
attribute should be set to right
.
If not, just leave it as right to left is default.
Please note: the marquee tag was deprecated a long time ago and should not be used.
According to MDN:
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
<marquee direction="right">this is text</marquee>
<marquee>this is text</marquee>
Try the following > Moving from left to right
<marquee direction="right">Text move from its starting point left to right</marquee>
Try the following > Moving from right to left
<marquee direction="left">Text move from its starting point left to right</marquee>