居中iframe div

时间:2017-04-20 17:35:05

标签: html css video iframe center

编码iframe以使用屏幕调整大小时我无法居中。我尝试了THIS问题的所有回复,但没有运气。我错过了一些明显的东西,或者没有办法做到这一点?

HTML

<div class="videoWrap">
    <iframe src="http://www.youtube.com/embed/playlist?list=PLn0iVeY0xhgZvWDQ1K_6EChZe_4TL5zDZ"></iframe>
</div>

CSS

.videoWrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
}

4 个答案:

答案 0 :(得分:1)

使用您关联的问题...

.videoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoWrap iframe {
  width: 300px;
  height: 300px;
}

div, body, html {
  height: 100%;
  width: 100%;
}
<div class="videoWrap">
  <iframe src="http://www.youtube.com/embed/playlist?list=PLn0iVeY0xhgZvWDQ1K_6EChZe_4TL5zDZ"></iframe>
</div>

答案 1 :(得分:0)

您可以尝试申请保证金:自动;你的div的css属性。 https://www.w3schools.com/css/css_align.asp

答案 2 :(得分:0)

在我的例子中,我使用通常的设置(position:absolute`应用 here )水平和垂直居中包装元素,并在此处定义宽度和高度。视频本身只是填充了居中的包装。

&#13;
&#13;
html, body {
  height: 100%;
  margin: 0;
}

.videoWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 16:9 */
  width: 80vw;
  height: 45vw;
}

.videoWrap iframe {
  width: 100%;
  height: 100%;
}
&#13;
<div class="videoWrap">
  <iframe src="http://www.youtube.com/embed/playlist?list=PLn0iVeY0xhgZvWDQ1K_6EChZe_4TL5zDZ"></iframe>
</div>
&#13;
&#13;
&#13;

答案 3 :(得分:0)

使用left: 50%transform: translateX(-50%)

.videoWrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrap iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
}