css 响应式iFrame

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 响应式iFrame相关的知识,希望对你有一定的参考价值。

<div class="iframe_container">
  <iframe src="https://www.youtube.com/embed/83VFQmGh1J0" frameborder="0" allow="encrypted-media" allowfullscreen></iframe>
</div>
/* 4x3 Aspect Ratio */
.iframe_container {
  padding-bottom: 75%;
}
.iframe_container {
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}

.iframe_container iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

以上是关于css 响应式iFrame的主要内容,如果未能解决你的问题,请参考以下文章

css iframe / youtube / video的响应式CSS

css 响应式iFrame

css 响应式修复iframe视频

css 响应式iframe

css 响应式视频iframe

仅使用 CSS 的响应式视频 iframe(保持纵横比)?