我无法为html表单提供水平滚动条,该表单在iframe中加载,iframe本身在cshtml页面中加载。 试过以下事情:
scrolling="Yes"
属性添加到iframe标记还尝试在内联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>