Open In App

HTML <fieldset> disabled Attribute

Last Updated : 21 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The disabled attribute for <fieldset> element in HTML is used to specify that the group of related form elements is disabled. A disabled fieldset is un-clickable and unusable. It is a boolean attribute. 

Syntax:

<fieldset disabled>fieldset content...</fieldset>

Example: 

html




<!DOCTYPE html>
<html>
    <head>
        <title>HTML fieldset disabled Attribute</title>
    </head>
    <body style = "text-align:center">   
 
        <h1 style = "color: green;">GeeksforGeeks</h1>
        <h2>HTML fieldset disabled Attribute</h2>
 
        <p>This field set is disabled.</p>
 
        <!--A disabled fieldset-->
        <fieldset disabled>
          Name: <input type="text"><br>
        </fieldset>
 
    </body>
</html>     


Output:

 disabledfieldset 

Supported Browsers: The browser supported by <fieldset> disabled attribute are listed below:

  • Apple Safari 6 and above
  • Google Chrome
  • Edge 12 and above
  • Firefox
  • Opera 12 and above
  • Internet Explorer

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

Similar Reads