MediaWiki:Common.css: Difference between revisions

From CPC Game Making
Created page with "CSS placed here will be applied to all skins: a { overflow-wrap: break-word; }"
 
mNo edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


a {
div {
   overflow-wrap: break-word;
   word-break: break-all; /* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_text/Wrapping_breaking_text */
}
}

Revision as of 13:06, 13 July 2025

/* CSS placed here will be applied to all skins */

div {
  word-break: break-all;  /* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_text/Wrapping_breaking_text */
}