The noresize attribute of the FRAME element specifies that the user cannot resize the frame.
<frame src="example.html" noresize>
| Attribute | Value | Explanation |
|---|---|---|
| noresize | noresize | disallows resizing of the frame (HTML : noresize | XHTML : noresize="noresize") |
The right frame border cannot be moved.
<html> <head> <title>TAG index</title> </head> <frameset cols="150,*,150"> <frame src="example_a.html"> <frame src="example_d.html"> <frame src="example_b.html" noresize> <noframes> <body> <p>Alternate content</p> </body> </noframes> </frameset> </html>