我有以下选框:
<div id="tip"><marquee loop="1" direction="right" behavior="slide">Text</marquee></div>
上面的代码从左到右移动文本,并在div的右边缘停止。有没有办法迫使它停在div的中心?我不能使用填充,因为文本是随机的,没有固定的长度。
目前的行为:
-------------------------------------------------------------------------- > > > > > > > > > Text --------------------------------------------------------------------------
我想要的行为:
-------------------------------------------------------------------------- > > > > > > Text --------------------------------------------------------------------------
答案 0 :(得分:1)
不会建议你使用选框但是如果你真的想要,那么你可以这样做以获得你想要的效果
<div id="tip">
<div class="stop">
<marquee loop="1" direction="right" behavior="slide">Text</marquee>
</div>
</div>
CSS
.stop{width:*your choice*;}
答案 1 :(得分:0)
您需要输入的只是简单的html
选框循环=&#34; 1&#34;方向=&#34;右&#34; behavior =&#34; slide&#34;&gt; center text / center / marquee
您不需要知道css,并确保在选取标记之间包含中心标记。 玩得开心!!
答案 2 :(得分:-2)
<div class="name"><marquee behavior="slide" direction="right" scrollamount="10">Sudhanshu raj</marquee></div>
/*This is use to set the marquee at particular position*/
CSS:-
.name {
width: 53%;
}