Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I display a pdf inside an iframe showing all pdf pages?

Tags:

html

pdf

iframe

I've been working on having multiple pdf documents inside a single html page using iFrames. I figured how to insert pdfs inside iFrames but I've been curious if it's possible to add a pdf to an iFrame while showing all the pdf pages; that is, the iframe should display all the pdf content without a vertical scroll bar.

Thanks, Y_Y

like image 570
Y_Y Avatar asked Feb 18 '13 16:02

Y_Y


1 Answers

<iframe src="mydoc.pdf" width="100%" height="800px"></iframe>

I don't think you can show all pages, unless you make the height property large enough to show all pages. You would have to make the height big enough (proportionally) to show all pages based on the width of the iframe.

like image 82
Tanner Avatar answered Sep 17 '22 02:09

Tanner