-3

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>

enter image description here

<marquee direction="left">this is text</marquee>
Anubhav pun
  • 1,323
  • 2
  • 8
  • 20

2 Answers2

1

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.

Documentation on MDN

<marquee direction="right">this is text</marquee>

<marquee>this is text</marquee>
Tom M
  • 2,815
  • 2
  • 20
  • 47
0

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>
Roy Scheffers
  • 3,832
  • 11
  • 31
  • 36
Som
  • 598
  • 3
  • 12