Last modified: 2011-05-15 00:24:08 UTC
Printed articles should have justified paragraphs by default.
Why in print and not on screen?
(In reply to comment #1) > Why in print and not on screen? on screen, it's a preference, but the print preference is not that obvious. Unjustified text looks unprofessional in print. Ofcourse, this is a Wikipedia issue rather than a MediaWiki issue
This would neatly work around bug 524, however I'm not sure it's a good idea. My main concern is that justified text looks *really bad* when it includes long words (or worse, URLs). Browsers aren't generally smart enough to hyphenate, and the resulting huge spaces look, to my eye, much less professional than ragged-right text with normal word spacing.
This snippet in your user stylesheet should do what you are looking for: @media print { #content { text-align: justify; } } If users who choose 'justify' in their prefs usually want to print justified as well it's fairly easy to add the snippet above to the css this pref generates. Can you check if this justifies things properly?
you can add the above css snippet to your user stylesheet