<frameset border="">
Browser |
|
---|---|
Type |
|
The border attribute of the FRAMESET element specifies the size of the frame border.
<frameset cols="200,*" border="5"></frameset>
Attribute | Value | Explanation |
---|---|---|
border=" " | pixels | the size of the thickness |
Extension attribute. (Non standard attribute)
Example
<html>
<head>
<title>TAG index</title>
</head>
<frameset cols="200,*" border="50">
<frame src="example_a.html">
<frame src="example_d.html">
<noframes>
<body>
<p>Alternate content</p>
</body>
</noframes>
</frameset>
</html>
- Output
-
Example page
<html>
<head>
<title>TAG index</title>
</head>
<frameset cols="200,*" border="0">
<frame src="example_a.html">
<frame src="example_d.html">
<noframes>
<body>
<p>Alternate content</p>
</body>
</noframes>
</frameset>
</html>
- Output
-
Example page