width は横幅、height は高さを指定するプロパティです。
iframe要素にこのスタイルを設定すると、インラインフレームの大きさを指定することができます。
iframe {
width: 300px;
height: 200px;
}
| width | インラインフレームの横幅を指定します |
|---|---|
| height | インラインフレームの高さを指定します |
それぞれ 数値+単位(px、他)か %(割合)で指定します。
※デフォルトは auto(自動)です。(例:width: auto)
<html>
<head>
<title>TAG index Webサイト</title>
<style type="text/css">
<!--
iframe {
width: 300px;
height: 150px;
}
-->
</style>
</head>
<body>
<p><iframe src="example.html">サンプル</iframe></p>
</body>
</html>
▼これをブラウザで見ると次のように表示されます