Forum Moderators: open
Have a look at this page [quirksmode.org] and see if it helps - Opera gets a special mention and the <br /> hack may help you. Also look at your [blue]clear[/url] usage...
HTH
label, input{
float: left;
}label{
clear: left;
}
I don't really want to be adding <br />'s allover the place and I think its pretty poor that opera can't get this right. I really don't appreciate Opera at all.
The best solution I found (short of inserting <BR>'s was to add a div just before the </fieldset>:
<div style="clear: left;"><!-- --></div>
;)
if all the contents of the fieldset are floated, then they are removed from the flow and the fieldset doesn't "know" it's got any children.
One solution would be to float the fieldset too (width declared) as the specs state that a floated parent will stretch to contain it's floated children.
Or
wertigon came up with a good solution for table-less Forms in this thread [webmasterworld.com]
Suzy