Andreas: Ausrichten einer Tabelle links in Hauptframe

Hallo .....,

komme nicht hinter die Lösung meines Problem's.
Habe eine Tabelle mit einen bild drin, das soll aber links 100% bündig
in einen Hauptframe liegen und im IE auch so angezeigt werden. Mit meiner Tabelle bekomme ich das bild zwar 100% an den ober Rand des Hauptframe positioniert aber links ist das Bild nicht 100% bündig(0,5 cm abstand vom linken´Rand-Hauptframe)

Meine Tabelle:

<table width="0" height="0" border="0" align="left" cellpadding="0" cellspacing="0">
  <tr>
    <td height="168" width="175" valign="top" align="left"><img src="alien.jpg" width="175" height="168"></td>
  </tr>
</table>

Was muß ich anders machen um auch links das bild 100% bündig bekomme?

  1. Hallo .....,

    komme nicht hinter die Lösung meines Problem's.
    Habe eine Tabelle mit einen bild drin, das soll aber links 100% bündig
    in einen Hauptframe liegen und im IE auch so angezeigt werden. Mit meiner Tabelle bekomme ich das bild zwar 100% an den ober Rand des Hauptframe positioniert aber links ist das Bild nicht 100% bündig(0,5 cm abstand vom linken´Rand-Hauptframe)

    Meine Tabelle:

    <table width="0" height="0" border="0" align="left" cellpadding="0" cellspacing="0">
      <tr>
        <td height="168" width="175" valign="top" align="left"><img src="alien.jpg" width="175" height="168"></td>
      </tr>
    </table>

    Was muß ich anders machen um auch links das bild 100% bündig bekomme?

    Hi,

    ich bin mir nicht sicher obs funktioniert aber versuchs mal so:

    table border="0" cellpadding="0" cellspacing="0">
      <tr>
         <td valign="top" align="left"><img src="alien.jpg" width="175" height="168"></td>
     </tr>
    </table>

    1. Hallo,
      Du mußt auf jedenfall im body folgenden html code einfügen

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

      Andi