如何集中我的iFrame视频(HTML,CSS)

时间:2017-12-21 11:00:06

标签: html css html5

我是HTML和CSS编码的新手,现在我遇到了一个挑战。 我目前正在寻找有关如何将iFrame视频集中在页面中心的解决方案。

HTML

<section id="video">
  <div class="row">
    <div class="video-container">
      <iframe width="853" height="480" src="https://www.youtube.com/embed/rXuWb0RXfEI" frameborder="0" allowfullscreen></iframe>
    </div>
  </div>
</section>

CSS:

.video-container {
   position:relative;
   padding-bottom:56.25%;
   padding-top:30px;
   margin-top: 100px;
   height:0;
   overflow:hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
     position: absolute;
     width:80%;
     height:80%;
}

.row {
     text-align: center;
}

我希望有人可以帮我解决这个问题...

3 个答案:

答案 0 :(得分:1)

试着改变这个:

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 10%;
    left: 30%;
}

答案 1 :(得分:0)

你实际上可以省略你的CSS的下半部分,只需使用以下内容:

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  margin-top: 100px;
  height: 0;
  overflow: hidden;
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

答案 2 :(得分:0)

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

<div class="videoWrapper">
    <!-- Copy & Pasted from YouTube -->
    <iframe width="560" height="315" src="https://www.youtube.com/embed/wmgWITMWcmE?rel=0&amp;controls=0&amp;showinfo=0" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
</div>