如何防止 iframe 视频超出最大宽度和最大高度?

How to prevent Iframe video go beyond max-width & max-height?

我用 bootstrap 嵌入了一个响应式 YouTube 视频。

我的目标:保持最大尺寸 width="560" height="315" 然后居中。

应该如何:https://avexdesigns.com/responsive-youtube-embed/

但它却超出了这些限制,使视频非常模糊。

不应该是这样的:https://bomengeduld.github.io/mos-man2/

到目前为止,我尝试在 css 中设置最大宽度和最大高度,但它只会调整宽度。

我在这段代码中做错了什么?预先感谢您解决这个问题!

如果理解正确,你想要这样的东西:

#embed {
    height: auto;

    text-align: center;
    background: black;
    width: 100%; /* new */
    max-width: 560px; /* new */
    margin: 0 auto; /* new */
}


.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.videowrapper iframe, .videowrapper object, .videowrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
<section id="embed">


                  <div class="container-fluid videowrapper">

                  <iframe src="https://www.youtube.com/embed/g42lHnzOeVs" width="560" height="315" frameborder="0" allowfullscreen=""></iframe>
                  </div>


</section>