Home » HTML legend Tag

HTML legend Tag

by Online Tutorials Library

HTML <legend> tag

HTML <legend> tag is used to insert a title or caption to its parent element such as <fieldset>. The <legend> element must be the first child of <fieldset > element.

By using <legend> tag with <form> elements, it is easy to understand the purpose of grouped form elements.

Syntax

Following are some specifications about the HTML <legend> tag

Display block
Start tag/End tag Both Start and End tag
Usage textual

Example

Test it Now

Output:

HTML legend tag

Attribute:

Tag-specific attributes:

Attribute Value Description
align
  • top
  • bottom
  • left
  • right
It specifies the alignment of the caption.
(Not Supported in HTML5)

Global attribute:

The <legend > tag supports the global attributes in HTML

Event attribute:

The <legend> tag supports the event attributes in HTML.

Supporting Browsers

Element chrome browser Chrome ie browser IE firefox browser Firefox opera browser Opera safari browser Safari
<legend> Yes Yes Yes Yes Yes
Next TopicHTML lists

You may also like