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

Tabelle wird nur im IE richtig angezeigt

Status
Für weitere Antworten geschlossen.

AlexDozer

Neues Mitglied
Hi, ich hab meine Website mit hilfe einer Tabelle aufgebaut. Im IE wird dies richtig angezeigt. Im Firefox aber nicht. Hier wird der Text der eigentlich in der Mitte und Rechts stehen sollte auch links mit angezeigt. Seht selbst!
Code:
<body>


<table border="0" width="100%"  cellpadding="0" cellspacing="0" bgcolor="#000000" style="height:100%;">
  <colgroup>
     <col width="188px">
     <col>
     <col width="188px">
  </colgroup>
<thead>
  <tr>
     <td><img src="tt.bmp"></td>
     <td><h1>AlexDozer aka DJ Brotschneidemaschine</h1></td>
     <td><img src="tt.bmp"></td>
  </tr>
</thead>
<tfoot>
  <tr>
     <td><img src="tt.bmp"></td>
     <td></td>
     <td><img src="tt.bmp"></td>
  </tr>
</tfoot>
<tbody>    
  <tr>
     <td ><p>Über mich<br />Equipment</p></td>
     <td>Mitte</td>
     <td>Rechts</td>
  </tr>
</tbody>
</table>
</body>

Jemand ne Idee? Ich sehe da keinen Fehler!

Gruß Alex
 
Ok, ich hatte einen falschen Eintrag in meiner CSS-Datei. Jetzt sieht es zumindest schon mal besser aus.

Nur der Text ist im Firefox vertical nicht in der Mitte was er eigentlich sein sollte.

Code:
<table border="0" width="100%"  cellpadding="0" cellspacing="0" bgcolor="#000000" style="height:100%;">
  <colgroup>
     <col width="188px">
     <col>
     <col width="188px">
  </colgroup>
<thead>
  <tr>
     <td><img src="tt.bmp"></td>
     <td><h1>AlexDozer aka DJ Brotschneidemaschine</h1></td>
     <td><img src="tt.bmp"></td>
  </tr>
</thead>
<tfoot>
  <tr>
     <td><img src="tt.bmp"></td>
     <td></td>
     <td><img src="tt.bmp"></td>
  </tr>
</tfoot>
<tbody align="center" valign="middle">    
  <tr>
     <td >
        <table>
            <tr><td>&Uuml;ber mich</td></tr>
            <tr><td>Equipment</td></tr>
         </table>
     </td> 
     <td>Mitte</td>
     <td>Rechts</td>
  </tr>
</tbody>
</table>
 
Code:
<table border="0" width="100%"  cellpadding="0" cellspacing="0" bgcolor="#000000" style="height:100%;">
  <colgroup>
     <col width="188px">
     <col>
     <col width="188px">
  </colgroup>
<thead>
  <tr>
     <td><img src="tt.bmp"></td>
     <td><h1>AlexDozer aka DJ Brotschneidemaschine</h1></td>
     <td><img src="tt.bmp"></td>
  </tr>
</thead>
<tfoot>
  <tr>
     <td><img src="tt.bmp"></td>
     <td></td>
     <td><img src="tt.bmp"></td>
  </tr>
</tfoot>
<tbody align="center" valign="middle">    
  <tr>
     <td >
        <table>
            <tr><td>&Uuml;ber mich</td></tr>
            <tr><td>Equipment</td></tr>
         </table>
     </td> 
     <td>[COLOR=Red]<center>[/COLOR]Mitte[COLOR=Red]</center>[/COLOR]</td>
     <td>Rechts</td>
  </tr>
</tbody>
</table>
So sollte es funktioniern
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben