HTML | <frame> noresize Attribute

The HTML <frame> noresize attribute is used to specify that the frame element can not be resize by the user. This type of attribute is used to lock the size of the frame element. 

Syntax:

<frame noresize="noresize">

Attribute Values:

  • noresize: It defines the frame element that can not be resize by the user.

Note: The <frame> tag is not supported by HTML 5. 

Example: 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML frame noresize Attribute</title>
</head>
 
<frameset cols="30%, 40%, 30%">
    <frame name="top"
        src="attr1.png" noresize="noresize"/>
    <frame name="main"
        src="gradient3.png" marginwidth="30" />
    <frame name="bottom" marginwidth="30"
        src="col_last.png" marginwidth="40" />
</frameset>
 
</html>


Output:

  

Supported Browsers: The browsers supported by HTML <frame> noresize Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Contact Us