• Aktualisierte Forenregeln

    Eine kleine Änderung hat es im Bereich Forenregeln unter Abschnitt 2 gegeben, wo wir nun explizit darauf verweisen, dass Forenkommentare in unserer Heftrubrik Leserbriefe landen können.

    Forenregeln


    Vielen Dank

Tabelle Anzeige IE / Firefox unterschiedlich

ocgmw

NPC
Registriert
21.02.2002
Beiträge
1
Reaktionspunkte
0
Hallo,

ich habe für meine Website eine Tabelle in Verhältnis von 3 zu 3 erstellt.
Im Firefox habe ich dementsprechend auch 9 Felder als Block.
Wenn ich die Adresse dann in den IE (6.0) kopiere habe ich neun Felder nebeneinander!
Was natürlich ziemlich schlecht aussieht, da die Felder dann extrem lang sind.

Was habe ich falsch gemacht?
Hier mal zum besseren Verständnis wie ich die Tabelle aufgebaut habe:

<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<tr>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<tr>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>
<th align="left" valign="top" td width="350" bgcolor="#000000"><FONT COLOR="FF00FF"><h3>ÜBschrift<br><h4>text/ Beschreibung ect..</td>

Ich habe das zum erstenmal gemachta, also ich bedanke mich schonmal im Voraus, und hoffe das mir jemand helfen kann, bitte mit simplen Schritten, da ich echter Laie bin!!!

Danke euch im Voraus
 
Hi,

bei mir sieht es gleich aus...

hast du das mit table noch drum rum?

<table>

dein code

</table>

MfG

Tipp: versuch mal Dir Css anzueignen, ist eigentlich net schwer, da kannst du nämlich besser deinen coda ala width und height verwalten, und na maßangabe wäre noch gut wie px für pixel bei den maßen...
 
naja kein Wunder dass das nicht funzt, ist ja auch komplett verkehter "Syntax" :D

Eine Tabelle sieht so aus:
Code:
<table>
 <tr>
  <td>
  </td>
 </tr>
 <tr>
  <td>
  </td>
 </tr>
...
</table>


am besten probierst du mal das:
beachte, dass die Tabelle nicht so breit ist wie der
Bildschirm, sondern 3*350 + padding/spacing/margin
[EDIT]Also die Tabelle hört auf wenn das Fenster größer als 1000blahblah Pixel ist ;)[/EDIT]


Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>blah</title>
<style type="text/css">
td.pink {
color:#FF00FF; 
background-color:#000000; 
width:350px; 
vertical-align:top; 
text-align:left
}

</style>
</head>

<body>

<table>
 <tr>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
 </tr>
 <tr>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
 </tr>
 <tr>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
  <td class="pink">
   <h3>ÜBschrift</h3>
   <h4>text/ Beschreibung ect..</h4>
  </td>
 </tr>
</table>

</body>
</html>
 
Zurück