overflow;hidden iFrame only - (how do I keep scrollbars on the hosted web page?)
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
精彩评论