Ie Displaying Fieldset Legend Incorrectly
The code I am using is appearing fine in FF but in IE, it resorts to the legend appearing almost in the fieldset with no space for the legend after the fieldset. I have included pi
Solution 1:
You need to add a larger bottom margin to your fieldset
and make it display:block
. Live example: http://jsfiddle.net/XLPxx/7/
fieldset{
display:block;
margin: 0 0 30px;
}
Post a Comment for "Ie Displaying Fieldset Legend Incorrectly"