Thomas J.S.: <td width=160> / Internet-Explorer

Beitrag lesen

Hallo,

Ich habe jetzt der Tabelle die Eigenschaft "table-leyout:fixed" zugewiesen und die Breite mit CSS über
<td style="width:160px">
festgelegt, aber trotzdem bleibt die Spalte immer noch sehr
breit. Hat jemand noch einen Vorschlag?

Ja, dein Problem hat die Ursache, dass du 'pt' als Schriftgröße verwendest (und du mischst XHTML-Noation (<br />) mit HTML-Notation)

So geht es:

Grüße
Thomas

--------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <title>Untitled</title>
 <style type="text/css">
  h1 {font-family:Arial,Helvetica;color:#000000;font-size:20px;}
  h2 {font-family:Arial,Helvetica;color:#000000;font-size:18px;}
  .blink {font-family:Arial,Helvetica;font-size:14px;color:#000000;text-decoration:underline;}
  .ntitle {font-family:Black Chancery,Arial,Helvetica;font-size:24pt;color:#F56800;text-decoration:none;}
  .links {font-family:Arial,Helvetica;font-size:16px;color:#000000;text-decoration:none;font-weight:700;}
  .ntext {font-family:Arial,Helvetica;font-size:16px;color:#000000;text-decoration:none;font-weight:700;}
  #titeltext {font-family:'Black Chancery',Arial,Helvetica;font-size:48px;color:#f56800;}
  #subtiteltext {font-family:'Black Chancery',Arial,Helvetica;font-size:16px;color:#f56800;}
  #navtd {background:url(./images/links.png) center 0px;}
 </style>
</head>

<body>
<table cellpadding="10" cellspacing="0" width="100%" height="100%" border="2">
 <tr>
  <td colspan="2" height="120">
   <table width="100%" border="0">
    <tr>
     <td align="center"><img alt="" src="./images/logo.png"></td>
     <td align="center">
      <span id="titeltext">Fit &amp; Relax</span>
      <br>
                        <span id="subtiteltext">Praxis f&uuml;r Physiotherapie</span>
     </td>
     <td align="center">
      <img alt="" src="./images/logo.png">
     </td>
    </tr>
   </table>
  </td>
 </tr>
 <tr>
  <td width="160" valign="top">
   <br><br>
   <a class="links" href="./index.html">HOME</a><br><br>
   <a class="links" href="./leistungen.html">Leistungen</a><br><br>
   <a class="links" href="./team.html">Team</a><br><br>
   <a class="links" href="./praxis.html">Praxis</a><br><br>
   <a class="links" href="./anfahrt.html">Anfahrt</a><br><br>
   <a class="links" href="./gaestebuch.html">G&auml;stebuch</a><br><br>
   <a class="links" href="./kontakt.html">Kontakt</a><br><br>
   <a class="links" href="./impressum.html">Impressum</a><br><br>
  </td>
  <td>
   <br>
   <br>
   <table>
    <tr>
     <td>
      <span class="ntitle">G&auml;stebuch</span><br><br><br>
      <span>...noch in Bearbeitung...</span>
     </td>
    </tr>
   </table>
  </td>
 </tr>
</table>

</body>
</html>