https://bugzilla.wikimedia.org/show_bug.cgi?id=33445
--- Comment #5 from [email protected] 2012-01-17 12:48:08 UTC --- table.float-left in Common.css is ok. But when you want to have a left or right floating table then you should care about the margins: {| class="wikitable" style="float:left; margin: 0 1em 1em 0;" {| class="wikitable" style="float:right; margin: 0 0 1em 1em;" It would be possible to redefine the deprecated HTML alignments http://www.w3.org/TR/html4/struct/tables.html#h-11.2.1 align="left" and align="right" with automatic margin: table[align=left] { float: left; clear: left; margin: 0 1em 1em 0; } table[align=right] { float: right; clear: right; margin: 0 0 1em 1em; } But I think this is not necessary and doesn't make sense. -- 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
