https://bugzilla.wikimedia.org/show_bug.cgi?id=20706
Erwin Dokter <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #15 from Erwin Dokter <[email protected]> 2010-11-08 15:21:02 UTC --- pre, code, tt { font-family: monospace, sans-serif; } This code is semantically incorrect, as sans-serif is not monospaced. As the 'trick' is to sepcify any font as the second parameter, I suggest changing it to the code below, based on another line in the same CSS files (font-family: serif, "Times New Roman";) pre, code, tt { font-family: monospace, "Courier New"; } -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
