古代英国服饰:请问怎么用marquee代码插入图片,使之滚动

来源:百度文库 编辑:查人人中国名人网 时间:2024/04/29 23:09:53
我知道是用<marquee direction="up" height="100" scrollamount="1" width="200"><p align="center"><img src="图片地址" /></p></marquee>
这个代码
但是,为什么在使用的时候,粘贴好之后,回来再看代码</marquee>总是自动跑到<img src="图片">的前面去,造成图片不在滚动区域,无法滚动呢?

<marquee id="scrollarea" direction="up" scrolldelay="200" scrollamount="2" width="200" height="150" onmouseover="this.stop();" onmouseout="this.start();">
<p>
<table width="200" border=0 cellpadding=0 cellspacing="0">
<tr>
<td width="200">
<img src="图片地址">
</td>
</tr>
</table>
</p>
</marquee>