If I have a table width of 100 pixels, I want to create a marquee effect where the text scrolls from right to left starting at 0 pixel position on the left side.
The code below currently starts the text from the 100th pixel and moves from right to left:
<marquee behavior="scroll" scrollamount="3" direction="left"
onmouseover="this.stop();" onmouseout="this.start();">
I am rolling from Left to Right
</marquee>
I would like the text to start from the zeroth pixel position instead.