According to the several references on the web, it is not possible to position a legend. So it is suggested to wrap it with span:

<legend><span>Foo</span></legend>

Then we can position the span inside the fieldset. but then when I want to add a border on top of the fieldset, there is a gap for the legend. Luckily, I've found that adding border to the legend also fixes this little, tiny gap but that's ugly solution (as everything else with css). Do you have any more valid solutions to this problem?

note: I've found the solution concurrently, after I've started writing this question, so I want to still ask it.

link|improve this question
Let me see if I get this right; You want to know how you can move the legend tag away from it's original position and then close the gap in the top border? If yes, then why even use a fieldset legend tagset? – Dandroid Feb 1 '11 at 12:53
2  
You'd do this for semantics and accessibility. The visual styling of an element has little to do with how a machine (e.g. screen reader) treats it. – Jared Mar 17 '11 at 22:44
feedback

3 Answers

up vote -1 down vote accepted

I think this will work

 <legend><span>ur text</span></legend>

Give border to the legend tag

legend {padding: 2px;border: 1px solid green;}
link|improve this answer
feedback

Use an outline instead of a border: http://jsfiddle.net/leaverou/gtNnT/

link|improve this answer
1  
Outline is useful if you don't care about IE 5/6/7 users (still a good chunk of people). IE 8 and Firefox support (all current versions) are also spotty. If only browser support was better, this would be the best option (so long as you're not trying to do any fance border effects like rounded corners)! reference.sitepoint.com/css/outline – Jared Mar 17 '11 at 22:55
feedback

Set margins for positioning. It works without problems.

legend {margin-left:50px;} /* 50px from Left of the Fieldset */
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.