Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、このコードを使用して PDF ファイルを HTML ページに埋め込んでいます。
<embed src="http://www.mywebsite.com/file.pdf" width="95%" type="application/pdf">
高さをユーザーの現在の画面サイズの 80% にする方法はありますか? そうすれば、常に画面のサイズ内で PDF 全体を表示できますか?
はい、可能です。この CSS を使用します。
body, html{ height: 100%; } embed{ height: 80%; }
フィドル: http://jsfiddle.net/ntQVw/