1

假设我的表格宽度为 100 像素,我想从右到左选取文本,但从 0 像素位置(左侧)开始文本。

但我下面的代码从第 100 个像素开始,但从右到左移动。

    <marquee behavior="scroll" scrollamount="3" direction="left" 
    onmouseover="this.stop();" onmouseout="this.start();">
    I am rolling from Left to Right
    </marquee>

我希望文本从第零像素位置开始

4

1 回答 1

1

在你的 CSS 中,给你的选框一个text-indent:-100px;

-100px 是选取框的宽度。这将在您想要的位置开始文本。 http://jsfiddle.net/Ldaf9/12/

于 2013-05-01T17:25:54.717 回答