2
我需要做一個YouTube的IFRAME響應,並且該iframe是浮動以添加內容的權利,我試着用這段代碼,但IFRAME沒有響應?Youtube的iframe響應和左浮動
謝謝。
的的jsfiddle:http://jsfiddle.net/94150148/vh04d7y2/
.videoWrapper {
\t position: relative;
\t padding-bottom: 51.44%; /* 16:9 */
\t padding-top: 25px;
\t height: 0;
}
.videoWrapper iframe {
\t position: absolute;
\t top: 0;
\t left: 0;
\t width: 100%;
\t 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>