I have the following HTML
<embed class='pdf_container' src='welcome.pdf' style ='width:100%;height:500px;' ></embed> <div id="show_message" class='message_wrapper' > <div id="message_content"> The requested operation ... </div> </div>
and in CSS
.message_wrapper{ position:fixed; z-index:1000; height:100px; width:100%; background:red; top:0; left:0; } .pdf_container{ position:absolute; top:0; left:0; z-index:100; }
Actually I want to show #show_message by .pdf_container , and it works well in Firefox, but not in IE , ignoring z-index .
Please help me deal with the problem.
Thanks.
See screenshots:
In IE
In IE 8.9
and in ff
In FIREFOX
source share