Definition and Usage The noresize attribute is used to specify that a frame layout cannot be changed by the user. By default; the user can...
Definition and Usage
The noresize attribute is used to specify that a frame layout cannot be changed by the user.
By default; the user can change the size of frames, this attribute prevents it.
Syntax
<frame noresize="noresize" /> |
Attribute Values
Value | Description |
noresize | Specifies that the frame size cannot be changed by the user. |
Browser Support
The attribute is supported in all major browsers.
Example
<html>
<frameset cols="50%,50%">
<frame src="frame_a.htm" noresize="noresize" />
<frame src="frame_b.htm" noresize="noresize" />
</frameset>
</html> |