开发者

overflow;hidden iFrame only - (how do I keep scrollbars on the hosted web page?)

开发者 https://www.devze.com 2023-03-13 19:26 出处:网络
Is it possible to have scrollbars on a webpage when it must have overflow:hidden for use in an iFr开发者_StackOverflow社区ame?Leave the web page as it is, and the on the <iframe>, use:

Is it possible to have scrollbars on a webpage when it must have overflow:hidden for use in an iFr开发者_StackOverflow社区ame?


Leave the web page as it is, and the on the <iframe>, use:

<iframe src="page.html" scrollbars="no" style="overflow: hidden;">


I think the best solution is scrolling="no" so it should be:

<iframe src="page.html" scrolling="no" style="overflow: hidden;">

as suggested here

0

精彩评论

暂无评论...
验证码 换一张
取 消