I have some pretty straightforward markup:

<form action="">
    <fieldset class="compact">                  
        <legend>Member Tools</legend>
        <label for="username">Username</label>
        <input name="username" id="username" type="text"/>
        <label for="password">Password</label>
        <input name="password" id="password" type="password" />
    </fieldset>
</form>

I am attempting to add a small margin to the bottom of the Legend element, this works just fine in Firefox 2 and 3 as well as IE 5-8, however in Safari and Chrome adding a margin does nothing. As far as I know legend is just another block level element and Webkit should have no issue adding a margin to it, or am I incorrect?

link|improve this question

1  
Google can get Quake II working in HTML 5 on Safari and Chrome. And yet I too struggle with CSS anomalies. The ironies in the client-side world never cease to amaze me. googlewebtoolkit.blogspot.com/2010/04/look-ma-no-plugin.html – John K Apr 2 '10 at 19:56
Over two years old and still not addressed! bugs.webkit.org/show_bug.cgi?id=35981 – Graham Conzett May 2 at 6:02
feedback

4 Answers

up vote 9 down vote accepted

After a bit of research I found a work-around for this that I believe to be the least "hacky" method for solving it. Using the nasty webkit targeting hacks really weren't an option, but I found that the -webkit-margin-collapse: separate property seems to work in stopping the margins on the elements from collapsing just as it describes.

So in my scenario the following fixes the issue by adding a margin to the top of the first label element (right below the legend) in the fieldset:

fieldset > label:first-of-type
{
-webkit-margin-top-collapse: separate;
margin-top: 3px;
}

Not perfect, but better than nothing, other browsers should just collapse the margins normally.

If anyone is curious someone actually did file a bug report about this # 35981

https://bugs.webkit.org/show_bug.cgi?id=35981

Thanks for everyone's input.

link|improve this answer
feedback

Well, <legend> really isn't "just another block-level element." Maybe it should be, but the fact is that it inherently is going to have layout peculiarities in that it's supposed to do something pretty weird, as elements go. Between IE and Firefox, the effects of margin and padding on <legend> elements are a lot different.

Do you want to just separate <fieldset> content from the top of the box? If so, I'd try playing with padding-top of the fieldset itself.

link|improve this answer
Thanks for replying. Going back and trying to find it in the spec I can't actually tell what it's supposed to be, whatever I set display to has no effect. I would try and adjust the padding of the fieldset, but I'm looking to increase the distance between the bottom of the legend and the first label. – Graham Conzett Apr 2 '10 at 20:11
1  
Well, <legend> is one of those throwbacks to yesteryear. That you can style it at all is kind-of amazing :-) I have some styled-up fieldsets in my own app, and I plan to re-do those with plain old <div> blocks at some point so that I can clean up some browser differences (mostly about horizontal positioning, but it's the same sort of problem). – Pointy Apr 3 '10 at 1:17
feedback

Sorry to post an answer to such an old thread, but there's actually a pretty easy solution for this that doesn't require any hacks. All you need to do is add padding to the top of your fieldset element.

fieldset { padding: 10px 0 0; }

This might make what I'm trying to say a little more clear: http://jsfiddle.net/8fyvY/

link|improve this answer
3  
this padding works differently in IE8 and 7. It puts the padding above the legend. – towpse Nov 29 '11 at 14:21
1  
this works for safari, chrome, IE9, Firefox and opera – towpse Nov 30 '11 at 14:59
1  
So weird. Given that the legend is inside the fieldset, wouldn't it make more sense for the padding to be applied above the legend as ie7 and 8 do? – quoo Apr 12 at 14:12
Beats me. I stumbled up on this solution purely on accident. – Wex Apr 12 at 20:20
1  
Good idea in theory, but if you have more than one <legend> tag in a <fieldset> then you still wont get the desired results. – David Gard May 15 at 13:45
feedback

Ive just found adding a 1px padding to the fieldset seems to make it suddenly aware of the margins it contains (the spacing created is more than 1 px).

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.