我有一个完整的页面 iframe,但在 chrome 中,滚动条最初加载然后消失,房间在那里,你可以使用它,但它不可见。在 pc 上的 safari、firefox 和 chrome 中完美运行,但在 mac 上,您可以看到滚动条的良好状态,但滚动条本身却丢失了。
body,html{
height:100%;
overflow:hidden;
}
#me-branding-bar{
overflow:hidden;
width:100%;
height:40px;
position:relative;
background-color:#ff9900;
}
#me-content{
height:100%;
width:100%;
position:relative;
border:1px solid #ff9900;
}
#me-content iframe{
border:1px solid #000;
overflow:scroll;
}
<div id="me-branding-bar">
</div>
<div id="me-content">
<iframe border="0" frameborder="0" hspace="0" vspace="0" marginheight="0" marginwidth="0" src="<?php echo $url;?>" style="overflow:visible;height:100%;width:100%;" height="100%" width="100%"></iframe>
</div>