第二个滚动条出现在 div 内(表现得像 iframe)
Second scroll bar appears inside a div (behaves like an iframe)
我的开发页面不知何故出现了第二个滚动条
http://topdodavatel.cz/defakto/produkty/stoly/
你知道为什么会这样吗?我相信内容应该自动适合页面,只需要一个滚动条。
这是问题的样子
删除
overflow-x: hidden;
在您的 body、html CSS 中。
之后应该没问题。
试试这个代码。 iframe 高度根据内容高度设置。所以滚动不显示
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<iframe src="http://whosebug.com/" frameborder="0" scrolling="no" id="iframe" onload='javascript:resizeIframe(this);' />
我的开发页面不知何故出现了第二个滚动条
http://topdodavatel.cz/defakto/produkty/stoly/
你知道为什么会这样吗?我相信内容应该自动适合页面,只需要一个滚动条。
这是问题的样子
删除
overflow-x: hidden;
在您的 body、html CSS 中。 之后应该没问题。
试试这个代码。 iframe 高度根据内容高度设置。所以滚动不显示
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<iframe src="http://whosebug.com/" frameborder="0" scrolling="no" id="iframe" onload='javascript:resizeIframe(this);' />