关于flash的透明,可参考flash.html
<iframe src="iframe-test-content.html" allowtransparency="true"></iframe>
iframe{
position:relative;
z-index:3;
width:420px;
height:120px;
color:#fff;
}
经常在页面中使用iframe引入 百度地图/Google地图,对于远程的页面无法重设其body的边距,导致实现引用盒子之间的间隙问题,如下:
<iframe src="iframe-test-content.html" allowtransparency="true"></iframe>
iframe{
position:relative;
z-index:3;
width:420px;
height:120px;
color:#fff;
}
引用不定高度的iframe页面时,会遇到iframe自适应高度的问题,解决方法可参考iframe-auto
实践出真知