html里面通过嵌入iframe的方式引入别的页面,但是这个时候就会出现滚动条,为了去除这个滚动条,我们可以在iframe里面加入一个css的属性:
overflow:hidden;
通过iframe引入的页面会生成一个边框,我们大部分情况下都不需要这个边框,那么我们可以这样设置
frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no"
iframe引入的页面,我们还可以给他设置成透明的背景
allowTransparency="true"