我建议结合使用
- CSS
overflow-y: hidden;
scrolling="no"
(对于HTML4)和*seamless="seamless"
(对于HTML5)
该seamless
属性 *已从标准中 删除 ,并且没有浏览器支持该属性。
.foo { width: 200px; height: 200px; overflow-y: hidden;}<iframe src="https://bing.com" scrolling="no" ></iframe>


