01.widthプロパティ、heightプロパティで、幅や高さを指定します。
ここでは、インラインフレームに対する幅や高さの設定を紹介します。
適用要素(width):すべての要素(置換要素以外のインライン要素とtr要素、thead要素、tbody要素、tfoot要素を除く)
適用要素(height):すべての要素(置換要素以外のインライン要素とcol要素、colgroup要素を除く)


※★CSS
iframe {
	width: 300px;
	height: 180px;
}


※★HTML
<div class="sample"><iframe src="06test_img/06test_99.html">代替内容</iframe></div>