Contents
HTML legend: Main Tips
- HTML
legend
element is always the first child of a <fieldset>Â element. - It sets a caption for the content of
<fieldset>
. - You have to include both starting and ending tags.
Using legend Tag in HTML
HTML legend
tags define a caption for the <fieldset>
element:
Example
<form>
 <fieldset>
   <legend>This is the title</legend>
   First input: <input type="text" size="30"><br>
   Second input: <input type="text" size="30"><br>
 </fieldset>
</form>
Pros Main Features
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
Pros Main Features
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
Pros Main Features
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Deprecated align Attribute
HTML legend
tag supports all the global attributes. Its only tag-specific attribute was align
which defined the alignment of the caption. However, it is deprecated and not supported by modern browsers:
Example
<form>
<fieldset>
<legend align="right">Align example:</legend>
Align: <input type="text" size="30"><br>
Mode: <input type="text" size="30"><br>
</fieldset>
</form>
Tip: when using the legend tag in HTML, use CSS text-align property instead of the align attribute.
Browser support
Chrome
All
Edge
All
Firefox
1+
IE
6+
Opera
All
Safari
All
Mobile browser support
Chrome
All
Firefox
4+
Opera
-
Safari
All