https://bugzilla.wikimedia.org/show_bug.cgi?id=13766
The Evil IP address <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from The Evil IP address <[email protected]> 2010-07-21 20:21:02 UTC --- For all browsers besides IE < 8, the "display:table" could be used. <div class="toc" id="toc"> the toc </div> div#toc { display:table; } For IE, the following might work within conditional comments: div#toc { float: left; /* or right in rtl */ } div#toc + * { clear:left; /* right in rtl */ } Worked in Firefox, but I can't test it in IE, as this isn't installed on my PC, however, I wouldn't be surprised if there was something IE doesn't support. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
