[Bug 13766] one cell in TOC is ugly HTML

Wed, 21 Jul 2010 13:21:21 -0700

https://bugzilla.wikimedia.org/show_bug.cgi?id=13766

The Evil IP address <theevilipaddr...@hotmail.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |theevilipaddr...@hotmail.de

--- Comment #2 from The Evil IP address <theevilipaddr...@hotmail.de> 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to