跑马灯 html自带标签 marquee
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Marquee标签</title>
<style>
.main{text-align:center;}
.marq{padding-top:30px;padding-bottom:30px;}
.hello{font-size:36px;font-weight:bold;color:white;padding-bottom:10px;}
</style>
</head>
<body>
<div class="main">
<marquee class="marq" bgcolor="pink" direction="left" loop="">
<div class="hello">Hello World</div>
</marquee>
</div>
</body>
</html>
相信坚持的力量,日复一日的习惯.