is there anyway to have a fieldset legend have different formats. For example, title would be big but sub title would be small?
Title: sub title
is there anyway to have a fieldset legend have different formats. For example, title would be big but sub title would be small?
Title: sub title
<legend>Title: <span class="subtitle">Subtitle</span></legend>
CSS:
fieldset legend .subtitle { font-size: 80%; }
The <legend>
element can contain any inline element, so you can apply virtually whatever formatting you'd like.