Sabine Viertel: CSS und Drucken

Beitrag lesen

Nun zu deinem Problem.
Hast du schon häufiger aus dem Browser ausgedruckt? Ist das Problem schon einmal aufgetreten, normalerweise sind die Druckergebnisse, dem was du siehst schon recht ähnlich. Eine Möglichkeit wären etwas abstruse Einstellungen im Browser, aber du müßtest das Problem schon genauer beschreiben am Besten mit Beispiel.

bis dann dirk

Danke Dirk,

ich habe das erste Mal die "CSS-Datei" aus dem Browser ausgedruckt, peinlicherweise vor‚m Kunden. (Mit solchen Problemen hab ich überhaupt nicht gerechnet.)
Aus Zeitgründen mußte ich mich hinsetzen und schnell alles umschreiben, halt mit der altbewährten Methode <font ...> im Body. Jetzt klappt es wieder.

Ich möchte aber weiterhin mit CSS arbeiten und bin für eine Lösung dankbar.
Dazu muß ich noch sagen, daß ich nur Graphiker und kein Programmierer bin.
Wie Du siehst, arbeite ich mit FrontPage.
Hier einen Teil der Seite:

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<title>Sondergebiete</title>
<style>
a:link {
  color: blue;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-decoration: underline;
}
a:visited {
  color: #9C8483;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  text-decoration: underline;
}
.text1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #000000;
}
.text2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #000000;
}
.text3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #000000;
}

</style>
<script language="JavaScript">

<!--
function dialog(f1)
{
var win;
win=window.open(f1,"gauswisch","width=770,height=550");
}
//-->

</script>
</head>

<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">

<table>
  <tr>
    <td><table width="500" height="100%" border="0" cellspacing="0" cellpadding="5"
    align="left">
      <tr>
        <td valign="top" align="left"><table border="0" cellpadding="0" cellspacing="0"
        width="500" height="40">
          <tr>
            <td valign="top" align="left" Class="text3" width="98"><a href="wohngeb.html">Wohngebiete</a></td>
            <td valign="top" align="left" Class="text3" width="117"><a href="gewerbe.html">Gewerbegebiete</a></td>
            <td valign="top" align="left" Class="text1" width="104">Sondergebiete </td>
            <td valign="top" align="left" Class="text3" width="137"><a href="hro.html">Hansestadt
            Rostock</a></td>
            <td valign="top" align="left" Class="text3" width="44"><a href="bebauungsplan.html">zurück</a></td>
          </tr>
        </table>
        </td>
      </tr>
      <tr>
        <td><table border="0" cellpadding="5" cellspacing="0" width="500" height="202">
          <tr>
            <td valign="top" width="160" height="30" class="text1" bgcolor="#E7DCDC" align="left"><b>Ort</b></td>
            <td valign="top" width="40" height="30" class="text1" bgcolor="#E7DCDC" align="left"><b>Nr.</b></td>
            <td valign="top" width="190" height="30" class="text1" bgcolor="#E7DCDC" align="left"><b>Name</b></td>
            <td valign="top" width="110" height="30" class="text1" bgcolor="#E7DCDC" align="left"><b><u>genehmigt
            am:</u><br>
            inkraft seit:</b></td>
          </tr>
          <tr>
            <td valign="top" width="160" height="13" class="text2" bgcolor="#F4F0F0" align="left">Bartenshagen-Parkentin</td>
            <td valign="top" width="40" height="13" class="text2" bgcolor="#F4F0F0" align="left">B 06</td>
            <td valign="top" width="190" height="13" class="text2" bgcolor="#F4F0F0" align="left">Sondergebiet
            Hütten</td>
            <td valign="top" width="110" height="22" class="text2" bgcolor="#F4F0F0" align="left"><u>23.09.1998</u></td>
          </tr>
          <tr>
            <td valign="top" width="160" height="25" class="text2" bgcolor="#E7DCDC" align="left">Bentwisch</td>
            <td valign="top" width="40" height="25" class="text2" bgcolor="#E7DCDC" align="left">VEP
            09</td>
            <td valign="top" width="190" height="25" class="text2" bgcolor="#E7DCDC" align="left">Windenenergieanlagen</td>
            <td valign="top" width="110" height="25" class="text2" bgcolor="#E7DCDC" align="left"><u>29.04.1998</u></td>
          </tr>
        </table>
        </td>
      </tr>
    </table>
    </td>
  </tr>
</table>
</body>
</html>