MediaWiki:Common.css: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 49: Line 49:




/* text in <pre> does not wrap on Reading mode in Edge browser, and assume in others and extends past right margin*/
/* 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:
    overflow: visible;
    nowrap: normal;
    max-width: 80%;
    display: inline-block;
    white-space: normal;
*/


pre {
pre {
     max-width: 80%;
     max-width: 80%;
    nowrap: normal;
}
}