当前位置: 代码迷 >> Web前端 >> 怎么使iframe透明
  详细解决方案

怎么使iframe透明

热度:87   发布时间:2012-10-28 09:54:44.0
如何使iframe透明

<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>

  相关解决方案