【发布时间】:2021-10-06 11:57:58
【问题描述】:
我阅读了下面有关使用 iframe 包装器和覆盖隐藏 iframe 中的一些底部的文章。 Iframe: Cut off the bottom
我想做同样的事情,但从顶部而不是底部。我需要在下面的 css 中更改什么
#iframe-wrapper {
position:relative;
}
#iframe-overlay { /* Adjust values as needed */
height:17px;
width:480px;
background-color:#fff;
position:relative;
top:-24px;
left:5px;
}
【问题讨论】: