<frameset border="">

Browser
  • IE
  • Cr
  • Sf
  • Fx
  • O
Type
  • Extension

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

border: 50px

<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 pagenew window
border: 0

<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 pagenew window