MediaWiki:Print.css: Difference between revisions

From Working With Glass
Jump to navigation Jump to search
Add no print class for hiding elements from print pages.
 
(No difference)

Latest revision as of 08:59, 30 October 2025

/* CSS placed here will affect the print output */

/* Class to hide things from the print version.*/
@media print {
  .noprint {
    display: none !important;
  }
}