Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have an HTML fieldset and legend, and had issues with the background-color in the fieldset spilling outside of the borders in IE7. I was able to resolve the issue by using negative margins, like so:

fieldset {
    background-color:#E6E2D7;
    padding-top:5px;
    position:relative;
}

fieldset legend {
    position: absolute;
    top: -0.6em;
    left: 0.5em;
}

Now the border of the fieldset crosses over the legend in IE8+/Firefox/Chrome, but looks fine in IE7.

Is this a known issue and if so, is there a workaround?

Below is a link to a screenshot of the issue:

screenshot

share|improve this question
This one is hard to answer without seeing the problem in action. Could you create a jsfiddle demonstrating it? I have started on one here: jsfiddle.net/9r9ZS – Vidar S. Ramdal Sep 20 '12 at 14:36
The comment below answered my question, thanks. – user609926 Sep 21 '12 at 18:34

migrated from webapps.stackexchange.com Sep 20 '12 at 15:32

1 Answer

up vote 0 down vote accepted

You can have an IE7 specific css class by adding * + html before its definition

Example:

/* IE7 specific css*/
* + html fieldset legend {
    position: absolute;
    top: -0.6em;
    left: 0.5em;
}

/* all other browsers*/
fieldset legend {
    position: absolute;
}
share|improve this answer
This worked perfectly, thanks! – user609926 Sep 21 '12 at 18:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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