跑马灯 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>
posted @ 2023-05-11 09:55  盘思动  阅读(106)  评论(0)    收藏  举报