Open In App

HTML <fieldset> disabled Attribute

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: 




<!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:



  

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

Article Tags :