Elements within forms in vBulletin are often grouped inside a <fieldset> tag. The titles of these fieldsets are set inside <legend> tags, which take their styling from the <legend> class.

Example of element using this class:
<form>
<fieldset>
<legend>This uses the Legend class</legend>
<div>Some form elements here...</div>
</fieldset>
</form>
