JaphJawsfrach
New Member
I have html page with a div element. It is actually css to hide page when modalpopup is opened. It is working fine in firefox but not in IE 6. Can anyone please suggest. \[code\]<!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>\[/code\]