Create not resizable frame in HTML and CSS

Description

The following code shows how to create not resizable frame.

Example


<!--from   w  ww.j  a va2 s  . c  o m-->
<!DOCTYPE HTML>
<html>
<frameset rows="25%,50%,25%">
<frame noresize="noresize" src="http://java2s.com">
<frame noresize="noresize" src="http://java2s.com>
<frame noresize="noresize" src="http://java2s.com">
</frameset>
</html>

Click to view the demo

The code above generates the following result.

Create not resizable frame in HTML and CSS