在jsf页面中的iframe中是否有类似scrolling-x =“no”和scrolling-y =“yes”的方法?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在jsf页面中的iframe中是否有类似scrolling-x =“no”和scrolling-y =“yes”的方法?相关的知识,希望对你有一定的参考价值。
我在一个jsf项目中,所有的xhtml页面都显示在<iframe>
中(参见下面的代码示例)。所以我需要隐藏这个iframe里面HTML对象的滚动。 #myIframe html: scroll-x:hidden;
。我尝试了许多没有效果的试验。这是我的代码。
<iframe id="content" name="content"
style="width: 100%; height: 100%" src="content.xhtml" scrolling="no">
<p>Your browser does not support iframes.</p>
</iframe>
有scrolling="no"
的解决方案,但它也防止overflow-y
。我只想隐藏overflow-x
。
所以我的问题是如何在iframe中找到<html>
DOM对象?如何在这个html元素中隐藏overflow-x
?
答案
请尝试以下方法:
<iframe id="content" name="content" style="width: 100%; height: 100%; overflow-x: hidden; overflow-y: scroll;" src="content.xhtml">
<p>Your browser does not support iframes.</p>
</iframe>
以上是关于在jsf页面中的iframe中是否有类似scrolling-x =“no”和scrolling-y =“yes”的方法?的主要内容,如果未能解决你的问题,请参考以下文章
在bootstrap的标签页中嵌入iframe,页面只不能显示全,仅显示一个表框的大小