本文介绍了从iframe中删除滚动条的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用此代码
<iframe frameborder="0" style="height: 185px; overflow:scroll; width: 100%" src="http://www.cbox.ws/box/?boxid=439&boxtag=7868&sec=main" marginheight="1" marginwidth="1" name="cboxmain" id="cboxmain" seamless="seamless" scrolling="no" frameborder="0" allowtransparency="true"></iframe>
这是它的显示方式()
如何删除水平滚动条并修改垂直滚动条的CSS ?
How do I remove the horizontal scrollbar and modify the css of the vertical scrollbar?
谢谢。
推荐答案
p>
in your css:
iframe{
overflow:hidden;
}
这篇关于从iframe中删除滚动条的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!