第二个滚动条出现在div内(行为类似于iframe)

时间:2015-03-18 07:40:29

标签: html css iframe scrollbar

不知何故,我的开发页面中出现了第二个滚动条

http://topdodavatel.cz/defakto/produkty/stoly/

你知道为什么会这样吗?我相信内容应该自动适合页面,只需要一个滚动条。

以下是问题的解决方法

Problem with 2 scroll bars

2 个答案:

答案 0 :(得分:3)

删除

overflow-x: hidden; 

在你体内,html CSS。 在此之后应该没事。

答案 1 :(得分:1)

试试这段代码。 iframe高度根据内容高度设置。所以滚动不显示

<script language="javascript" type="text/javascript">
      function resizeIframe(obj) {
        obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
      }
    </script>

    <iframe  src="http://stackoverflow.com/" frameborder="0" scrolling="no" id="iframe" onload='javascript:resizeIframe(this);' />