我正在尝试在HTML代码中嵌入pdf文档,我尝试了三种不同的方法,这实际上给了我相同的结果:
<embed src="files/cv_aaragon_en.pdf" width="100%" height="100%">
<object data="files/cv_aaragon_en.pdf" type="application/pdf" width="100%" height="100%">
<p>It appears you don't have a PDF plugin for this browser.
No problem, you can still <a href="files/cv_aaragon_en.pdf">download the PDF file.</a></p>
</object>
<iframe src="files/cv_aaragon_en.pdf" width="100%" height="100%">
如图所示:
现在我有以下问题:
谢谢。
答案 0 :(得分:2)
您可以尝试添加样式标记:
<iframe style="position: absolute; height: 100%" src= "files/cv_aaragon_en.pdf" />