`
流浪鱼
  • 浏览: 1682485 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

让ifrae背景透明

    博客分类:
  • css
 
阅读更多

1.

<iframe src="./ads_top_tian.html" allowtransparency="true" style="background-color=transparent" title="test" frameborder="0" width="470" height="308" scrolling="no"></iframe>

2.

<iframe allowtransparency=true src="page.htm" frameborder="0" ></iframe>
在iframe的页面中加 <body style="background-color:transparent">并在iframe中加allowtransparency=true
需要IE5.5以上版本才支持

3.

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>父页面</title>
</head>

<body bgcolor="#FF0000">
<iframe src="index.htm"  allowTransparency="true"></iframe>
</body>

</html>


<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>子页面</title>
<style type="text/css">
body
{
    background-color: transparent;
}
</style>
</head>

<body>

</body>

</html>

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics