Author: hemanshu_desai
Description:
Printed articles should have justified paragraphs by default.
Version: unspecified
Severity: enhancement
Author: hemanshu_desai
Description:
Printed articles should have justified paragraphs by default.
Version: unspecified
Severity: enhancement
Status | Subtype | Assigned | Task | ||
---|---|---|---|---|---|
Resolved | None | T2524 Print stylesheet forces left alignment on RTL languages | |||
Declined | None | T2483 Printed articles should have justified paragraphs by default |
hemanshu_desai wrote:
(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?