【发布时间】:2016-01-12 21:28:14
【问题描述】:
我需要制作一个 youtube iframe 响应式并且 iframe 保持浮动以向右侧添加内容,我尝试使用此代码但 iframe 没有响应式?
谢谢。
JSFiddle:http://jsfiddle.net/94150148/vh04d7y2/
.videoWrapper {
position: relative;
padding-bottom: 51.44%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.box1 {
float:left;
width: 400px
}
<div class="box1">
<div class="videoWrapper">
<iframe width="560" height="315" src="https://www.youtube.com/embed/6apL89xgbR0"
frameborder="0" allowfullscreen></iframe></div></div>
<div class="box2">Some text</div>
【问题讨论】: