Div在IE8 / IE9中无法超过PDF,但适用于FF和Chrome



我想让我的div超过一个PDF。这个例子在FF中工作得很好,但在ie8/9中不工作。注意:无论PDF指向哪里,结果都是一样的。

<html>
<head></head>
<body>
<div style="position:absolute;z-index:1000;background-color:pink;z-index:1000">
I'm over PDF
</div>
<iframe src="http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf" style="width:100%;height:100%;z-index:0">
</body>
</html>

找到解决方案了你基本上需要在div下面插入和空iframe,但是覆盖PDF,并使用Z-index: PDF(1),背景iframe(50),内容div(100)。

最新更新