HTML frame noresize Attribute
HTML <frame> tag
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>
|
Try-It-Yourself Demos
frame
noresize attribute example
Specify that the frame size cannot be changed.
HTML <frame> tag
Learn XML with <oXygen/> XML Editor - Free Trial!
 |
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|