Johannes Weber: Einfache Tabelle wird unter IE falsch dargestellt

Beitrag lesen

Hallo,

ich habe mir eine kleine Tabelle mit 100% breite gebaut. In dieser Tabelle habe ich noch eine Tabelle mit 100% breite, wo ich rechts zentriert einen Text ausgeben will.

Unter Firefox wird mein Text ganz rechts angezeigt. Im IE habe ich zwischen dem rechten Rand und dem Text aber noch 5cm Platz. Was kann ich tun, damit es überall läuft?

Hier mein code:

<html>
<head>
<title>my home site</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="8" topmargin="8">
<table width="100%" bordercolor="#000000" border="0" height="100%" cellspacing="0" cellpadding="0">
  <tr>
    <td valign="top" height="259">
      <table width="100%" border="0" height="12">
        <tr>
          <td height="25" width="174">&nbsp;</td>
          <td height="25" width="635" valign="top">
            <div align="right">Hallo</div>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
</body>
</html>

Johannes