I am having trouble on IE7. I have following html format.
<fieldset class="wrapper">
<legend class="ct">Legend </legend>
<div class="ct">Div 1</div>
<div class="ct">Div 2</div>
</fieldset>
And this is the css style
.wrapper .ct {
display:inline-block;
*display:inline; /*IE7*/
float:left
}
when I test this on other browser it works fine but IE7 does not. Please see screenshot below. But if I use div instead legend then it works. Here is on Jsfiddle

legendelement here?legendis used to provide the description of elements inside afieldsetand should (afaik) not be used outsidefieldsets. I think a heading element (such ash2) is more appropriate here.legends are really difficult to style as well, that's why I'm confused as to why you'd make it harder for yourself. – powerbuoy Apr 5 '12 at 0:18legendelement is meant forfieldsets. Contexts in which this element can be used: As the first child of a fieldset element. – steveax Apr 5 '12 at 0:19