在html中删除选框中的空格

时间:2011-04-02 15:13:03

标签: html

我为自己的网页创建了大量图片。但是如何去除最后一个和第一个图像之间的空间以产生连续的效果?我给出了我在下面使用的代码,

<marquee style="overflow:" behavior="scroll" direction="left" OnMouseOver="this.stop()" OnMouseOut="this.start()">
   <img src="images/Bluelounge.gif" width="300" height="200" alt="lon">
   <img src="images/Southleather.gif" width="300" height="200" alt="south">
   <img src="images/Dell-monitor.gif" width="300" height="200" alt="monitor">
   <img src="images/Spphire.gif" width="300" height="200" alt="card">
</marquee>

1 个答案:

答案 0 :(得分:2)

添加CSS规则以确保在选取框内的图像之间删除所有间距:

marquee img {border:none; padding:0; margin:0;}

注意:

在HTML 5中,marquee元素已为obsoleted