tags:

views:

178

answers:

3

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

+1  A: 

Have a look at Multiple FieldSet Nested FieldSet

adatapost
i changed the question as i had a typo
ooo
+2  A: 
<legend>Title: <span class="subtitle">Subtitle</span></legend>

CSS:

fieldset legend .subtitle { font-size: 80%; }
deceze
A: 

The <legend> element can contain any inline element, so you can apply virtually whatever formatting you'd like.

nickf