假设我有一个100像素的表格宽度,我想从右到左选取一个文本,但从0像素位置(左侧)开始文本。
但我的下面代码从第100个像素开始,但是从右向左移动。
<marquee behavior="scroll" scrollamount="3" direction="left"
onmouseover="this.stop();" onmouseout="this.start();">
I am rolling from Left to Right
</marquee>
我希望Text从Zeroth像素位置开始
答案 0 :(得分:0)
在您的CSS中,为您的选框添加text-indent:-100px;
-100px是选框框的宽度。这将启动您想要的位置的文本。 http://jsfiddle.net/Ldaf9/12/