去掉 iframe 边框以及滚动条以及背景透明

来源:互联网 发布:屏幕碎裂壁纸软件 编辑:程序博客网 时间:2024/04/29 19:29
我们经常在html里面通过嵌入iframe的方式引入别的页面,但是因为某些原因,比如引入的页面比我们设置的iframe要大,这个时候就会出现滚动条,为了去除这个滚动条,我们可以在iframe里面加入一个css的属性
[css] view plain copy
 print?
  1. overflow:hidden;  
通过设置这个属性iframe就不会出现滚动条了

我们通过iframe引入的页面会生成一个边框,我们大部分情况下都不需要这个边框,那么我们可以这样设置

[css] view plain copy
 print?
  1. frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no"  

iframe引入的页面,我们还可以给他设置成透明的背景
[css] view plain copy
 print?
  1. allowTransparency="true"  
0 0
原创粉丝点击