关于滚动新闻条的实现
因为在网上看到的滚动新闻题,是在固定范围内进行显示,所以我尝试着用了一个表格限制大小,然后用滚动字控制标签,控制滚动方向,但是效果不佳,达不到预定效果,请指教,附上我的想法实现的html:<html>
<head>
<title>News</title>
</head>
<body>
<table width="20" height="10">
<tr>
<td width="20" height="10">
<marquee direction="down">中国</marquee>
<marquee direction="down">中国电视台</marquee>
<marquee direction="down">中央电视台</marquee>
<marquee direction="down">国</marquee>
</td>
</tr>
</table>
</body>
</html>