<frameset bordercolor=""></frameset>

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

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


<frameset cols="200,*" bordercolor="#0000ff"></frameset>

属性 説明
bordercolor="" 境界線の色を指定

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

色の指定は、ハッシュ( # )で始まる6桁のカラーコードか、redgreenwhiteといったカラーネームで行います。詳細についてはカラーチャートのページをご覧ください。

使用例


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

<frameset cols="200,*" border="20" bordercolor="#0000ff">

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

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

</frameset>

</html>

表示例

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