Jump to content

MediaWiki:Common.css: Difference between revisions

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




/* 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 {
     overflow: visible;
     overflow: visible;
    text-wrap: wrap;
     nowrap: normal;
     nowrap: normal;
     max-width: 80%;
     max-width: 80%;
     display: inline-block;
     display: inline-block;
     white-space: normal;
     white-space: normal;
*/
/* trying again 6/3/24 */
pre {
    text-wrap: wrap;
}
}