【发布时间】:2021-06-28 14:43:39
【问题描述】:
我正在尝试使用媒体查询调整 cbox iframe 的大小,以便在较小的屏幕使用时调整大小。它似乎不起作用,所以任何帮助将不胜感激。谢谢!
HTML:
<div id="n-cbox"><iframe id="iframe-cbox" src="URL removed on purpose" height="404" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe></div>
CSS:
#n-cbox {
position: fixed;
display: none;
z-index: 999;
top: 218px;
left: auto;
right: 50px;
bottom: auto;
width: nullpx;
padding: 0px;
}
#iframe-cbox {
width:100%;
}
@media only screen and (max-width:800px) {
#iframe-cbox {
width:50%;
}
【问题讨论】:
-
jsbin.com/jusotewuju/1/edit?output — 我无法重现问题
-
也许你只是忘记了最后的
}?
标签: html css iframe media-queries