我正在尝试将网页的内容放入尺寸固定的iframe中。
我需要调整页面大小,使整个页面适合iframe的给定维度而不会截断。
我不需要滚动条,页面应该没有滚动条。
我尝试过类似的东西,但没有用。
<iframe width="650" height="350" src="http://www.bbc.co.uk" style="-ms-transform: scale(,);"></iframe>
答案 0 :(得分:2)
我害怕你不能。你可以选择使用site speicfic css来减少元素的大小。
如果你不想滚动条,请尝试overflow:hidden css property。
答案 1 :(得分:0)
根据iframe的给定尺寸,您不需要滚动条,所以只需添加滚动=&#34;否&#34;
检查
<iframe width="650" height="350" scrolling="no" src="http://www.bbc.co.uk"></iframe>
Preeti Chawla, Web developer