When I add a border to fieldset element and then drag the legend down to work as a heading of sorts, the gap in the fieldset remains.

Is there a way to have the entire border, without adding a wrapper div and setting the border on that?

Example

Example

CSS

fieldset legend {
    position: relative;
    bottom: -40px; 
    background: transparent; 
}

jsFiddle.

Thanks.

link|improve this question

What browser are you testing with? – thirtydot Mar 23 '11 at 1:41
@thirtydot Chrome 10 – alex Mar 23 '11 at 1:42
For instance, in Firefox, it doesn't look like your screenshot. – thirtydot Mar 23 '11 at 1:42
@thirtydot I'm a recent Chrome convert (though Firefox 4 may steal me back) so that is why I may only be noticing this behaviour now. – alex Mar 23 '11 at 1:43
I see the odd gap in the border in Safari too, might be a WebKit bug. The legend doesn't move at all in my Firefox. – mu is too short Mar 23 '11 at 1:46
show 2 more comments
feedback

4 Answers

up vote 2 down vote accepted

Tested in IE7/IE8 and recent versions of Firefox, Chrome, Safari, Opera.

It looks the same in all of them, with the exception that IE7 is adding a little space on the left.

I had to add an innocent little wrapper span.

http://jsfiddle.net/thirtydot/ErZEj/

HTML:

<form>
    <fieldset>
        <legend><span>I am</span></legend>

        <div style="margin-top:80px">dsfsdf</div>

    </fieldset>
</form>

CSS:

fieldset {
    border: 2px dotted #333;   
    height: 340px;
    position: relative
}
fieldset legend {
    position: absolute;
    top: 0;
    left: 0
}
legend span {
    position: absolute;
    left: 0;
    bottom: -60px;
    white-space: nowrap /* or define width */
}
link|improve this answer
+1 works a treat! – alex Mar 23 '11 at 2:16
Yay! Btw: I just noticed that top: 40px seems to work just as well (and is clearer to read). – thirtydot Mar 23 '11 at 2:20
feedback

Look at this jquery fiddle : jsFiddle

link|improve this answer
Sneaky, I like that..! =) – David Thomas Mar 23 '11 at 1:35
Thanks, I thought about this too, but it won't support < IE8, which means it is not suitable for my required browser compatibility (but +1 because it is the best solution I've found so far). – alex Mar 23 '11 at 1:42
Simple solution : Update to a new version of IE i.e IE8 =) – roadRunner Mar 23 '11 at 1:43
feedback

Put the position: relative on the fieldset and absolutely position the legend:

fieldset {
    border: 2px dotted #333;   
    height: 340px;
    position: relative;
}

fieldset legend {
    position: absolute;
    top: 40px;
    left: 0;
    background: transparent; 
}

Updated fiddle: http://jsfiddle.net/ambiguous/YHhPP/

This renders the same way in Gecko and WebKit for me, the original fiddle has the gap in WebKit but the legend is ignoring the bottom:-40px in Gecko.

You can also try floating the legend: http://jsfiddle.net/ambiguous/Gwv4M/1/

fieldset {
    border: 2px dotted #333;   
    height: 340px;
}

fieldset legend {
    float: left;
    margin-top: 40px;
}

But IE7 and IE8 seem to butcher that one too.

link|improve this answer
Hey, you may be onto something +1. Do you know if this will work in IE7? – alex Mar 23 '11 at 1:44
@alex: It doesn't. See ipinfo.info/netrenderer + fiddle.jshell.net/ambiguous/YHhPP/show/light Also doesn't work in even IE8 T_T – thirtydot Mar 23 '11 at 1:47
Odds are that you're going to have a special "beat IE7 into submission" stylesheet anyway so piling more hacks into it for this might not hurt too much. IE8 doesn't seem to like it either. – mu is too short Mar 23 '11 at 1:52
1  
@thirtydot Good ol' IE =} – alex Mar 23 '11 at 1:52
feedback

Why not just leave the legend tag out and use something else for the header inside the filedset.

link|improve this answer
4  
Because I believe the legend is the most semantically correct element to use (I care about people with disabilities that rely on screen readers, for example). – alex Mar 23 '11 at 1:25
If you do this can you not set "display: none" for the legend so the screen reader uses it for the prompt but it is not displayed as part of your visuals and then place your visual header with some form of formatted text. – Wes Grant Mar 23 '11 at 1:44
Can you confirm it won't read it, in addition, will it then repeat the title twice? – alex Mar 23 '11 at 1:45
I am not 100% sure about the Fieldset tag, but I know that you can have labels on a form to help prompt screen readers that are marked hidden or display: none and the prompts are still read. I would think that the fieldset tag would work similarly. – Wes Grant Mar 23 '11 at 2:01
feedback

Your Answer

 
or
required, but never shown

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