Jump to content

MediaWiki:Common.css: Difference between revisions

no edit summary
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 50: Line 50:


/* 5/15/24: text in <pre> does not wrap on Reading mode in Edge browser, and assume in others and extends past right margin; but doesn't work; the only thing that works is max-width: 80% which is good to limit the whitespace block, but on read mode it just extends off the page... none of these worked:*/
/* 5/15/24: text in <pre> does not wrap on Reading mode in Edge browser, and assume in others and extends past right margin; but doesn't work; the only thing that works is max-width: 80% which is good to limit the whitespace block, but on read mode it just extends off the page... none of these worked:*/
pre {
pre {
     overflow: visible;
     overflow: visible;
Line 60: Line 61:




/* looks better w/ pre set to smaller width than page, but on read mode it still spills off right margin*/
/* looks better w/ pre set to smaller width than page, but on read mode it still spills off right margin
> to use only if the above doesn't work
pre {
pre {
     max-width: 80%;
     max-width: 80%;
}
}
*/