我想在我的页面中包含一些垂直选取框文本,<div>
以便自动滚动内容。
我发现以下代码很有用;
<marquee behavior="scroll" direction="up" height="250" scrollamount="2" scrolldelay="10" onmouseover="this.stop()" onmouseout="this.start()">
content goes here<br>
content goes here<br>
content goes here<br>
content goes here
</marquee>
但它在内容之后添加了一个空格。内容仅在整个文本向上滚动后才会出现(类似于重新启动)。我怎样才能避免(或删除)这个空白?
我在 Stack Overflow 中找到了它,并且有一些注意事项cloneNode()
。我不知道如何实现。
*注意:高度属性不相关。它具有相同的父级高度<div>