div 要素を含む html ページがあります。modalpopupを開いたときにページを非表示にするのは実際にはcssです。Firefoxでは正常に動作していますが、IE 6では動作していません。誰か提案してください。
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.overlay1
{
position: fixed !important;
background-color: #000;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
padding: 0;
margin: 0;
filter: alpha(opacity=20);
opacity: 0.2;
-moz-opacity: 0.2;
-khtml-opacity: 0.2;
-webkit-opacity: 0.2;
z-index: 10004;
}
</style>
</head>
<body>
<div class="overlay1">
</div>
</body>
</html>