Open In App

HTML | <frame> noresize Attribute

Last Updated : 13 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads