Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
titleDon't Print Style
@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
	
	.print-only{
		display: inline !important;
	}
}

.print-only{
	display: none;
}

Apply the style "no-print" to a component will ensure it is not part of any printed output.