Create a Frameset with no border in HTML and CSS

Description

The following code shows how to create a Frameset with no border.

Example


<html>
<head>
<title>Frames example</title>
</head><!--from  w  ww .ja  v a  2 s . c  om-->

<frameset rows="150, *, 100" frameborder="0">
<frame src="http://java2s.com" />
<frame src="http://java2s.com" />
<frame src="http://java2s.com" />
<noframes><body>This site makes uses of a technology called frames. Unfortunately
the browser you are using does not support this technology. We recommend that
you update your browser. We apologize for any inconvenience this causes.
</body></noframes>
</frameset>

</html>

Click to view the demo

The code above generates the following result.

Create a Frameset with no border in HTML and CSS