ð

2 Begin Print style sheet

  1. Make a print style sheet like any other but with a MEDIA attribute.
    <style type="text/css" media="print">
    rules will go here
    </style>
  2. Create a CLASS that tells the browser to reserve no space to display an item.
    <style type="text/css" media="print">
    .noprint  {display: none }
    </style>
  3. Apply that class to any part of the page that should not be printed.
    <div class="noprint">
    toolbars, buttons, text, etc.
    </div>