Trying to set the <legend> of a <fieldset> to display: inline; to that the following <span> will follow on inline, but my CSS is having no effect.

Here is a stripped down demo

EDIT

I have no control over HTML, only CSS

link|improve this question

76% accept rate
<legend> elements are "dodgy". Have you considered simply moving the <span> inside the <legend>? – thirtydot Apr 28 '11 at 12:59
Can you not make 2 spans inside legend to do what you want? <legend><span>Legend</span><span>Follower</span></legend> – Bazzz Apr 28 '11 at 13:01
have edited question to make problem clearer. – Mild Fuzz Apr 28 '11 at 13:13
I'm confused, just came back to accept an answer and it's gone!! – Mild Fuzz Apr 28 '11 at 13:45
@Mild Fuzz: The owner deleted it because it breaks the functionality of legend - see: i.imgur.com/PHW6a.png – thirtydot Apr 28 '11 at 17:11
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

Legends are special. In particular, their default rendering can't be described in CSS, so browsers use non-CSS means of rendering them. What that means is that a statically positioned legend will be treated like a legend and be separate from the actual content of the fieldset.

The weird doesn't end there; if you reverse the order of the span and the legend, the legend will still show up on top in most browsers (but not in Opera, apparently).

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.