NORESIZE attribute (frame)
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".
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:
|
|||||||
<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?
|
Supported by tags:
External links:
User Contributed Comments