用于在cshtml中加载的iframe中内容的水平滚动条

时间:2017-07-17 23:55:08

标签: iframe scrollbar

我无法为html表单提供水平滚动条,该表单在iframe中加载,iframe本身在cshtml页面中加载。 试过以下事情:

  1. 尝试将自动属性添加到iframe标记
  2. 尝试将overflow:auto属性添加到div标签中,其中包含iframe(这确实提供了水平滚动条,但没有提供iframe的html内容)
  3. 尝试将scrolling="Yes"属性添加到iframe标记
  4. 还尝试在内联css中添加overflow属性。

     <div id="iframe_container" class="col-lg-9" style="position: fixed; height:85%; width:93%; background: white;margin-top:60px">
                    <iframe name="ifr" src="@ViewBag.formName" id="frmhtmlForms" scrolling="yes" style="position: absolute; height:100%; width:100%;" align="middle" onload="document.body.style.height = frames.ifr.document.body.offsetHeight + parseInt(document.getElementById('iframe_container').style.top) + parseInt(document.getElementById('iframe_container').style.bottom) + 'px'"></iframe>
                </div>
    

0 个答案:

没有答案