【发布时间】:2018-05-17 20:28:54
【问题描述】:
我的网站上有一个文本框,使文本更易于阅读。我的网站上有一个 iframe,放在移动设备上的盒子外面。所以我按照this 教程来解决这个问题。我试图让我的 iframe 视频在 pc 浏览器上更小,并在我的移动设备代码中缩小当前大小。现在pc上太大了有没有办法做到这一点?
HTML 代码:
<div class="video-container"><iframe src="https://www.youtube.com/embed/c0i88t0Kacs"></iframe>
</div>
CSS 代码:
.video-container {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden; }
.video-container iframe, .video-container object, .video-container embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%; }
【问题讨论】:
-
尝试使用媒体查询从此处获取答案:stackoverflow.com/questions/27227214/…