You are here: Reference > HTML > attributes > NORESIZE (frame)

NORESIZE attribute (frame)

Browser support:
Specifies whether a frame window is resizable.
JavaScript page for this attribute: noResize. You can find other example(s) there.

Possible values:

This attribute has no values.
Specifying the NORESIZE attribute with an arbitrary value has the same effect as specifying it with no value.
For example, all of the following declarations have the same effect: noresize, noresize="true", noresize="false", noresize="on", noresize="noresize".
Although Boolean attributes may be used with no value in HTML, for XHTML compatibility, always use the NORESIZE attribute in the following format: noresize="noresize".

Example HTML code 1:

This example illustrates the use of the NORESIZE attribute:
Code
resizeFrame.htm
noresizeFrame.htm
<frameset rows="110, *" frameborder="1">
    <frameset cols="*, *" frameborder="1">
        <frame src="resizeFrame.htm" />
        <frame src="resizeFrame.htm" />
    </frameset>
    <frame src="noresizeFrame.htm" noresize="noresize" />
</frameset>
Did you find this example helpful? yes no

Supported by tags:

External links:

User Contributed Comments

Post Content

Post Content