vote up 1 vote down star

I have defined a fieldset in HTML, and applied the following (simple) CSS rules to it:

fieldset { margin: 2em 0; position:relative; padding: 1em; border:1px solid #ccc; }

Everything is great, no big deal, except in all versions (well, up to 7 as far as I know) of IE the top border -- but not, interestingly, the bottom border -- of the fieldset visually extends too far to the right by about 25px, beyond where the vertical border is on that side.

It is worth noting that this element's width causes it to be outside its parent element width-wise to the right, when viewed in Firebug for example.

What is causing this problem in IE? Is this a known issue, and, if so, what is the fix / hack / workaround?

flag

25% accept rate
Any reason you're using position:relative? – Zack Mulgrew Oct 29 '08 at 21:38

2 Answers

vote up 1 vote down

Could you post more of your code, like the HTML of what's surrounding the fieldset and the corresponding CSS rules for that?

You mentioned that you can see it's wider than its parent element in Firebug. That's almost certainly related. Can you change the CSS of the parent element to make it wide enough to contain the fieldset?

Without a little more context, it's probably going to be tough to diagnose this more accurately...

link|flag
vote up 1 vote down

I don't know the fix, but this might be part of it:

http://labs.tom-lee.com/fieldsettest.html

link|flag

Your Answer

Get an OpenID
or

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