<frameset bordercolor=""></frameset>
| ブラウザ |
|
|---|---|
| 分類 |
|
| 要素 |
frameset要素に bordercolor="" を追加すると、境界線の色を指定することができます。
<frameset cols="200,*" bordercolor="#0000ff"> ~ </frameset>
| 属性 | 値 | 説明 |
|---|---|---|
bordercolor="" |
色 | 境界線の色を指定 |
上記の属性は、HTML 4.01では定義されていません。
色の指定は、ハッシュ( # )で始まる6桁のカラーコードか、redやgreen、whiteといったカラーネームで行います。詳細についてはカラーチャートのページをご覧ください。
使用例
<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>
- 表示例
