Frameset with 10 pixel frameborder in HTML and CSS

Description

The following code shows how to frameset with 10 pixel frameborder.

Example


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

<frameset rows="150, *, 100" frameborder="10">
<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.

Frameset with 10 pixel frameborder in HTML and CSS