• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Tabelle wird nicht richtig dargestellt-HILFE

Status
Für weitere Antworten geschlossen.

wandasia

Neues Mitglied
Hi

ich hab ma ne Frage und zwar wird der Inhalt der folgenden Tabelle immer verrückt im IE funktioniert richtig aber im firefox nicht :(


Code:
<div align="center">
  <h2>hallo</h2>
  <table border frame=border >
    <tr>    
    <th><b><a> hallo<br>Type I / Type II</a></b></th><th><a><b>Guten Tag</a></b></th>
    </tr>
    
    <tr>
    <th><form action="../query1.pl" method="POST"><INPUT type="image" src="images/hallo.jpg" height="300" value=hallo name=motif></th>
    
    <th><form action="../query1.pl" method="POST"><INPUT type="image" src="images/gutentag.jpg" height="300" value=tag name=motif></th>
    </tr>
    </table>
</div>
</tr>
</table>
Das linke bild ist immer etwas höher, als das rechte. Warum?

Hoffe ihr könnt mir helfen ist relativ dringend :(
 
PHP:
<div align="center">
  <h2>hallo</h2>
  <table border="1">
    <tr>
      <th>hallo<br />Type I / Type II</th>
      <th>Guten Tag</th>
    </tr> 
    <tr>
      <th>
        <form action="../query1.pl" method="post">
          <input type="image" src="images/hallo.jpg" height="300" value="hallo" name="motif" />
        </form>
      </th>
      <th>
        <form action="../query1.pl" method="post">
          <input type="image" src="images/gutentag.jpg" height="300" value="tag" name="motif" />
        </form>
      </th>
    </tr>
  </table>
</div>
Ich weiß nicht obs jetzt geht aber so ist die Tabelle wenigstens "standardgemäß"
 
Hab ich was verpasst? Ich oeffne Felder immer mit <td> nicht mit <th>. Wo kommt das denn her?
 
<th> = Table-Head = Tabellenüberschrift (Fett, zentriert)

In diesem Fall aber unnötig
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben