Iframe 투과 #
Iframe 객체 역시 투명하게 만들 수 있다. 그러나 안타깝게도 IE(6.0)은 select 객체는 투과시키지 못한다. 파이어폭스에서는 문제 없다.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style rel="stylesheet" type="text/css">
#Hello {
position: absolute;
}
#World {
position: absolute;
width: 500px;
height: 500px;
opacity: 0;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}
</style>
<title>Iframe Tranparency</title>
</head>
<body>
<div id="Hello">
<span>span</span>
<button>button</button>
<select><option>select</option></select>
<input type="text" value="text">
<input type="checkbox" value="checkbox">
<input type="radio" value="radio">
</div>
<iframe id="World"></iframe>
</body>
</html>







