我有以下 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>
在 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;
}
实际上我想展示它#show_message
,.pdf_container
它在 Firefox 中运行良好,但在 Firefox 中运行良好IE
,它忽略了z-index
.
请帮我找出问题所在。
谢谢你。
见截图:
在 IE 中
在FF