微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何从Bootstrap页面的底部删除空格?

如何解决如何从Bootstrap页面的底部删除空格?

我的Bootstrap页面存在一些问题。在页面底部,有一个多余的5px长空间。我已经尝试了所有方法,例如将边距和填充都设置为0,但是什么也没发生。有人知道将其删除的有效解决方案吗?

编辑:这是我的代码

<!DOCTYPE html>
<html lang="en">
<head>
    <Meta charset="utf-8">
    <Meta name="viewport" content="width=device-width,initial-scale=1">

    <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
</head>
<body style="width: 100%">
    <video style="width: 100%" id="player-video">
        <source src="intro.mp4" type="video/mp4">
    </video>

    <script src="jquery/jquery-3.4.1.slim.min.js"></script>
    <script src="popper/popper.min.js"></script>
    <script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>

解决方法

能否给您的视频标签加上display:flexheight: 100%,以帮助填充尚未分配的空白区域。 在我的演示中,效果很好。

如果这不起作用,请告诉我。

请注意,我在演示文件夹中具有引导程序。

 <video style="width: 100%; display: flex; height: 100%;" id="player-video">
        <source src="3. create-react-app.mp4" autoplay type="video/mp4">
    </video>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。