753Note

備忘メモ

iframe 親ページで子ページを表示

親ページ側に以下のように記述する。
 <iframe name="iframe" src="child.html"></iframe>

firefoxによる表示
Edgeによる表示

【parent.html】
<p>parent.html</p>
<p>iframe</p>
<iframe name="iframe" src="child.html"></iframe>

【child.html】
<p>child.html</p>
<p class='textarea'>現在の記事の内容です。
親ページのiframeに子ページが表示されています。</p>

【test.css】共通
@charset "utf-8";
/*fontの基本設定*/
* { font-family:'メイリオ', 'Meiryo', sans-serif; font-size: 16px; }
/*表示枠*/
  #post1 {
    width: 410px;
    height: 120px;
  }
  iframe {
    width: 420px;
    height: 200px;
  }
  p.textarea {
    width: 410px;
    white-space: pre-wrap;
  }