-2
A
回答
1
爲響應佈局使用CSS媒體查詢
HTML
<div class="wrapper">
<div class="h_iframe">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
<div class="h_iframe">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
<div class="h_iframe">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
<div class="h_iframe">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
CSS
html, body {
height:100%;
}
.wrapper {
padding: 0 1%;
width:98%;
}
.h_iframe {
float:left;
margin:1% 2%;
width:46%;
}
iframe {
width:100%;
}
@media screen and (max-width: 768px) {
.wrapper {
margin:0 auto;
padding:0;
width:95%;
}
.h_iframe {
margin:0;
width:100%;
}
}
0
這裏是頁面上完成響應4 iframe中。
HTML
<div class="wrapper">
<div class="h_iframe1">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="wrapper">
<div class="h_iframe2">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="wrapper">
<div class="h_iframe3">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="wrapper">
<div class="h_iframe4">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
CSS
html, body {
height:100%;
}
.h_iframe1 iframe {
position:absolute;
top:0;
width:100%;
height:25%;
}
.h_iframe2 iframe {
position:absolute;
top: 25%;
width:100%;
height:25%;
}
.h_iframe3 iframe {
position:absolute;
bottom:25%;
width:100%;
height:25%;
}
.h_iframe4 iframe {
position:absolute;
bottom:0;
width:100%;
height:25%;
}
-1
解釋解決方案基於在Youtube上的iframe http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
+0
我需要爲每個iframe包含標題。我可以做到這一點,沒有相對定位。 – ABC
相關問題
- 1. 需要麻煩響應佈局
- 2. 響應式佈局
- 3. 需要幫助將圖像添加到響應式佈局
- 4. 響應式佈局問題div佈局
- 5. Docusign響應式佈局
- 6. jcarousel和響應式佈局
- 7. 響應式塊佈局
- 8. 響應式佈局問題
- 9. 問題響應式佈局
- 10. 響應式佈局問題
- 11. 水平響應式佈局
- 12. 響應式兩欄佈局
- 13. 在響應式佈局
- 14. 響應式佈局教程?
- 15. 在響應式佈局
- 16. Android響應式佈局
- 17. 響應式設計佈局
- 18. Flexbox響應式佈局
- 19. 響應式佈局延遲?
- 20. 響應式佈局如表
- 21. 響應式框佈局
- 22. 創建響應式佈局
- 23. html5響應式佈局
- 24. 對佈局權重無響應的對話框,需要recesitation
- 25. 需要幫助 - 在響應式佈局中查看wordpress中的按鈕
- 26. 這個Bootstrap響應式佈局是否需要兩個單獨的網格?
- 27. 具有響應式圖像的2列CSS響應式佈局
- 28. CSS Flexbox響應式佈局和%寬度
- 29. 使用flexbox的非響應式佈局
- 30. 使用Twitter Bootstrap的響應式佈局
小提琴鏈接http://jsfiddle.net/nilam/63meQ/ – ABC
我需要包括每個iframe的標題。我可以做到這一點,沒有相對定位。 – ABC