systom: Bestimmte Bereiche einer HTML-Seite drucken

Beitrag lesen

Ich schließe mich meinem Vorredner an:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--

@media print
{
.noprint {display:none;}
}

-->
</style>
</head>

<body>

<table class="noprint" width="46%" border="0" cellspacing="0" cellpadding="1">
  <tr>
    <td>print nicht</td>
  </tr>
</table>

<br>

<table width="46%" border="0" cellspacing="0" cellpadding="1">
  <tr>
    <td>druck mich</td>
  </tr>
</table>
<a href="javascript:window.print()">druck</a>

</body>
</html>

Bitteschön