css问题,marquee元素只有18px高度,父元素div却有21px,什么原因?

eclipboard.png

clipboard.png

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>测试</title>
        <style type="text/css">
            * {
                padding: 0;
                margin: 0;
                box-sizing: border-box;
            }
            a {
                text-decoration: none;
            }
            ul {
                list-style: none;
            }
            body {
                padding-top: 20px;
            }
            .test {
                background: #F1C40F;
                color: white;
            }
        </style>
    </head>
    <body>
        <div class="test">
            <marquee>
                好好学习,天天向上,时间是最宝贵的东西
            </marquee>
        </div>
    </body>
</html>
阅读 2.8k
2 个回答

不要用marquee

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题