New! My 44-page ebook "CSS in 44 minutes" is out! 😃

Get it now →

# fieldset

Defines a group of controls within a form.

Example: Copy

Subscribe to the Newsletter
<form action="/subscribe" method="post">
  <fieldset>
    <legend>Subscribe to the Newsletter</legend>
    <input type="email" name="email">
    <button>Ok</button>
  </fieldset>
</form>

disabled

Disables the controls the fieldset contains.

No value required.