ポップアップ アラート ボックスが起動すると、次の html div と css があります。画面の残りの部分を暗くしたいのですが、CSS が機能していません。
css だけを使用して、フォーカスされた div の周りの画面を暗くすることはできますか?
.dim {
height:100%;
width:100%;
position:fixed;
left:0;
top:0;
z-index:1 !important;
background-color:black;
filter: alpha(opacity=75); /* internet explorer */
-khtml-opacity: 0.75; /* khtml, old safari */
-moz-opacity: 0.75; /* mozilla, netscape */
opacity: 0.75; /* fx, safari, opera */
}
<div class="dim" id="dialog" title="Event">
<p>
This is the default dialog which is useful for displaying information.
The dialog window can be moved, resized and closed with the 'x' icon.
</p>
</div>