LoginSignup
21
24

More than 1 year has passed since last update.

HTMLページ内フル画面のiframe

Last updated at Posted at 2017-09-28

概要

余白なし、枠なしの縦も横も100%目いっぱいのiframeをつくりたい

2021年10月:JavaScriptを使わない書き方に変更

4年ぶりくらいに更新します。

新・デモ

フル画面
https://codepen.io/tsunet111/full/BadjVKJ
CodePen
https://codepen.io/tsunet111/pen/BadjVKJ

新・コード

<div class="container">
<iframe src="iframecontent.html"></iframe>
</div>

* {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height:100vh;
}

iframe {
  border:none;
  width:100%;
  height:100%;
}

以下は旧バージョンです。

デモ

フル画面
https://codepen.io/tsunet111/full/WNvzKWz
CodePen
https://codepen.io/tsunet111/pen/WNvzKWz

コード

<div class="container">
<iframe src="iframecontent.html" width="100%" height="100%"></iframe>
</div>

* {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

iframe {
  border:none;
  width:100%;
  height:100%;
}
$(window).on('load resize',function(){
    $('.container').css('width',  $(window).width());
    $('.container').css('height',  $(window).height());
});

jQueryを使用しています。

21
24
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
24