<frameset border=""></frameset>

ブラウザ
  • IE
  • Cr
  • Sf
  • Fx
  • O
分類
  • 独自拡張属性
要素

frameset要素border="" を追加すると、境界線の太さを指定することができます。


<frameset cols="200,*" border="5"></frameset>

属性 説明
border="" ピクセル数 境界線の太さを指定

上記の属性は、HTML 4.01では定義されていません。

この属性の値に 0 を指定すると、境界線が表示されなくなります。

frameborder属性では境界線の表示・非表示を指定するだけですが、このborder属性では任意の太さを指定することができます。

使用例

border50を指定した例

<html>
<head>
<title>文書のタイトル</title>
</head>

<frameset cols="200,*" border="50">

<frame src="example_a.html">
<frame src="example_b.html">

<noframes>
<body>
<p>フレームの代替内容</p>
</body>
</noframes>

</frameset>

</html>

表示例

サンプル画面へ新規ウィンドウで表示

border0を指定した例

<html>
<head>
<title>文書のタイトル</title>
</head>

<frameset cols="200,*" border="0">

<frame src="example_a.html">
<frame src="example_b.html">

<noframes>
<body>
<p>フレームの代替内容</p>
</body>
</noframes>

</frameset>

</html>

表示例

サンプル画面へ新規ウィンドウで表示