THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML <frame> noresize Attribute

HTML frame Tag Reference HTML <frame> tag

Example

Frame A cannot be resized:

<frameset cols="50%,50%">
  <frame src="frame_a.htm" noresize="noresize">
  <frame src="frame_b.htm">
</frameset>
Try it yourself »

Definition and Usage

The <frame> tag is not supported in HTML5.

The noresize attribute specifies that a <frame> element cannot be resized by the user.

By default, each <frame> in a <frameset> can be resized by dragging the border between the frames. However, this attribute locks the size of a frame.


Browser Support

Attribute
noresize Yes Yes Yes Yes Yes

Syntax

<frame noresize="noresize">

Attribute Values

Value Description
noresize The frame cannot be resized by the user

HTML frame Tag Reference HTML <frame> tag