首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

怎么使iframe透明

2012-10-28 
如何使iframe透明htmlheadmeta http-equivContent-Type contenttext/html charsetgb2312ti

如何使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>

热点排行