<frameset bordercolor="">
Browser |
|
---|---|
Type |
|
The bordercolor attribute of the FRAMESET element specifies the color of the frame border.
<frameset cols="200,*" bordercolor="#0000ff"></frameset>
Attribute | Value | Explanation |
---|---|---|
bordercolor=" " | color code or name | the border color |
Extension attribute. (Non standard attribute)
Example
<html>
<head>
<title>TAG index</title>
</head>
<frameset cols="200,*" bordercolor="#ff0000">
<frame src="example_a.html">
<frame src="example_d.html">
<noframes>
<body>
<p>Alternate content</p>
</body>
</noframes>
</frameset>
</html>
- Output
-
Example page