https://bugzilla.wikimedia.org/show_bug.cgi?id=49965
--- Comment #21 from Eduard Braun <[email protected]> --- As it seems where not really able to fix this issue only by adjusting the line-height of the subs/sups since especially Firefox uses different positioning: What if we take a completely different approach and set the position of subs and sups manually? This way we could potentially synchronize the positioning across browsers and therfore produce a pleasing display on all systems. Similar to [1] I tested the following CSS in IE 11 and FF 28 and it seems to work really nicely: sup, sub { vertical-align: baseline; position: relative; } sup { top: -0.6em; } sub { top: 0.4em; } Would this be a reasonable approach? [1] http://css-tricks.com/snippets/css/prevent-superscripts-and-subscripts-from-affecting-line-height/ -- 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
