怎样使得frame的背景变透明
ie下需要给iframe标签添加allowTransparency属性,
<iframe allowTransparency="true" src="{url}"></iframe>
frame页面的html和body指定背景色为透明色
<style type="text/css">
html,body{
background-color:transparent;
}
</style>
ie下需要给iframe标签添加allowTransparency属性,
<iframe allowTransparency="true" src="{url}"></iframe>
frame页面的html和body指定背景色为透明色
<style type="text/css">
html,body{
background-color:transparent;
}
</style>