Tables werden nicht untereinander angezeigt

Status
Nicht offen für weitere Antworten.

lordamge

Grünschnabel
Hi,

Ich hab 2 Tables und beide haben das Tag 'align="left"' & ich will sie untereinander haben, sie werden aber nebeneinander angezeigt, wenn ich das Tag 'align' auf 'center' setz funktioniert es. Ich brauch es aber links. Ich weis auch das viele meinen dass man seine Webpage mit CSS und nicht mit Tabellen erstellen sollte. Ich mach es aber, weil ich es nicht anders kann und mit Tabellen zufrieden bin. ;)

Hier der Code falls er hilfreich seien sollte:

HTML:
  <html>
  <head>
  <title>n/a</title>
  <meta name="keywords" content="">
  <meta name="description" content="">
  <meta name="DC.Description" content="">
  <meta name="title" content="">
  <meta name="language" content="German, de, deutsch">
  <meta name="author" content="Lordamge@gsc-lan.de">
  <meta name="publisher" content="Gamers Special Club">
  <meta name="copyright" content="Gamers Special Club, info@gsc-lan.de">
  <meta name="revisit-after" content="after 20 days">
  <meta name="expires" content="2010-01-01">
  <meta name="date" content="2004-26-06">
  <meta name="page-topic" content="">
  <meta name="page-type" content="Privat Homepage">
  <meta name="audience" content="alle">
  <meta name="robots" content="index,follow">
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <meta http-equiv="Content-Script-Type" content="text/javascript">
  <meta http-equiv="Content-Style-Type" content="text/css">
  <style type="text/css">
  <!--
    /* ALLGEMEIN */
     a:link { color:#FFFFFF;text-decoration:none; }
     a:visited { color:#FFFFFF;text-decoration:none; }
     a:hover { color:#FFFFFF; background-color:#00FF00; }
     a:active { background-color:#00FF00; }
     tr,td,body { font-family:Verdana; color:#FFFFFF; font-size:8pt; table-layout:fixed; }
     /* FORMULARE */
     input,textarea,select {
     font-family:Verdana;
     text-color:#FFFFFF;
     font-size:8pt;
     background-color:#000000;
     border:0px;
     }
  -->
  </style>
  </head>
  <body leftmargin="0" bgcolor="#B1C1D4" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">
  <table cellpadding="0" cellspacing="0" align="left" valign="top" height="179" width="700" border="0">
   <tr>
     <td colspan="2"><img src="graphics/header.jpg" width="700" height="150" border="0" alt=""></td>
   </tr>
   <tr>
     <td bgcolor="#000000" align="left">
     <a href="v2.php?show=news"><img src="graphics/news.gif" width="118" height="30" border="0" alt=""></a>
 <a href="v2.php?show=anmelden"><img src="graphics/anmelden.gif" width="107" height="30" border="0" alt=""></a>
     <a href="v2.php?show=infos"><img src="graphics/infos.gif" width="73" height="30" border="0" alt=""></a>
 <a href="v2.php?show=history"><img src="graphics/history.gif" width="90" height="30" border="0" alt=""></a>
 <a href="v2.php?show=turniere"><img src="graphics/turniere.gif" width="98" height="30" border="0" alt=""></a>
     <a href="v2.php?show=files"><img src="graphics/files.gif" width="62" height="30" border="0" alt=""></a>
     </td>
     <td bgcolor="#000000" align="right">
     <a href="v2.php?show=home"><img src="graphics/home.gif" width="72" height="30" border="0" alt=""></a>
     </td>
   </tr>
  </table>
  <br>
  <table cellpadding="3" cellspacing="0" align="left" valign="bottom" height="" width="700" border="0">
   <tr>
 <td colspan="" width="700" height="30" background="graphics/ch.gif">Sie befinden sich hier // <a href="v2.php">Gamers Special Club</a> // <a href="v2.php?show=news">Neuigkeiten</a></td>
   </tr>
   <tr>
     <td background="graphics/cm.gif">
     </td>
   </tr>
   <tr>
     <td background="graphics/cm.gif"><br>
 <a href="v2.php?show=impressum"><img src="graphics/impressum.gif" width="69" height="14" border="0" alt=""></a>
 <a href="v2.php?show=kontakt"><img src="graphics/kontakt.gif" width="58" height="14" border="0" alt=""></a>
     <a href="v2.php?show=faq"><img src="graphics/faq.gif" width="48" height="14" border="0" alt=""></a>
     </td>
   </tr>
   <tr>
     <td background="graphics/cf.gif" height="1"></td>
   </tr>
   </table>
   </body>
  </html>
 
Ich würde die beiden tables in eine andere packen.
<table ...>
<tr><td> table1 </td></tr>
<tr><td> table2 </td></tr>
</table>
 
Nimm doch einfach ALIGN="LEFT" aus den Tabellen raus. Dann funktioniert es! Das ist doch eh die Voreinstellung. Das muss du nich extra angeben...

HUBBLE
 
Status
Nicht offen für weitere Antworten.
Zurück