[CSS] Problem mit Tabelle

Saijori
Hallo fröhlich

Ich wollte meine Tabelle so zweifarbig machen, leider funktioniert es nicht und ich weiß nicht warum =(

Code von der Tabelle:

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>


  <title>Ponyhof Cherokee</title>
  <link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>


<h1>Bildnachweis</h1>
<br>


<br>


<span style="font-weight: bold;"></span>
<table width="500">

  <tbody>

    <tr>

      <td class="zeiledunkel" colspan="4"><span style="font-weight: bold;">Private
Fotopages</span></td>

    </tr>

    <tr>

      <td class="zeilehell" colspan="2"></td>

      <td class="zeilehell" colspan="2">/</td>

    </tr>


  </tbody>
</table>

<br>

<table width="500">

  <tbody>

    <tr>

      <td class="zeiledunkel" colspan="4"><span style="font-weight: bold;">Kostenpflichtige(gekennzeichnet
mit *) &amp; kostenlose
Archive</span></td>

    </tr>

    <tr>

      <td class="zeilehell" colspan="2"><a href="http://jolyart.jo.funpic.de/" target="_blank">Jolys Art *</a></td>

      <td class="zeilehell" colspan="2"><a href="http://tinagrafie.de/Bilderarchiv/index.html" target="_blank">Tinagrafie</a></td>

    </tr>

  </tbody>
</table>
<br>
<table width="500">
  <tbody>
    <tr>
      <td class="zeilehell" colspan="4"><span style="font-weight: bold;">Benutzer
von <a href="http://www.gegen-bilderklau.net" target="_blank">Gegen-Bilderklau</a></span>
    </tr>
    <tr>
      <td class="zeilehell" colspan="2">Kim<br>
      <a href="http://www.animal-planet.de.gg/" target="_blank">www.animal-planet.de.gg</a><br>
      <td class="zeilehell" colspan="2">MissFreaky<br>
      <a href="http://www.running-horses.de.vu" target="_blank">www.running-
      <br>horses.de.vu</a>
    </tr>
    <tr>
      <td class="zeilehell" colspan="2">Ponyhof
      <td class="zeilehell" colspan="2">roxy
    </tr>
    <tr>
      <td class="zeilehell" colspan="2">Schwarze Seele<br>
      <a href="http://www.maren-dresen.de.vu/" target="_blank">Maren
Dresen</a>
      <td class="zeilehell" colspan="2">-Sugar-<br>
Julia Kanter
    </tr>
    <tr>
      <td class="zeilehell" colspan="2">Susan <br>
      <a href="http://claris-art.de/" target="_blank">Clarissa
Bigus</a>
      <td class="zeilehell" colspan="2">TinaToon<br>
      <a href="http://mkpictures.dreipage.de/" target="_blank">MK
Pictures</a>
    </tr>
    <tr>
      <td class="zeilehell" colspan="2">Isi-Pisi
      <td class="zeilehell" colspan="2"><a href="http://www.maren-dresen.de.vu" target="_blank"></a><a href="mailto:jannika.t@web.de">Zitrönchen</a>
    </tr>
    <tr>
      <td class="zeilehell" colspan="2"><a href="mailto:jacky-gers@gmx.de">Friesengirl</a>
      <td class="zeilehell" colspan="2">Haiwan<br>
      <a href="http://www.gauer-fotografie.de.tl/" target="_blank">Grauer Fotografie</a>
    </tr>
  </tbody>
</table>
<br>
<br>
</body>
</html>


CSS Code
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
body  {
font-size: 11px;
color: #AD9169;
font-family: Verdana;
text-align: center;
scrollbar-face-color: #C5AB8B;
scrollbar-highlight-color: #D2BDA7;
scrollbar-3dlight-color: #C5AB8B;
scrollbar-darkshadow-color: #C5AB8B;
scrollbar-shadow-color: #C5AB8B;
scrollbar-arrow-color: #D2BDA7;
scrollbar-track-color: #D2BDA7;
  }

table {
	font-family: Verdana;
	font-size: 11px;
	letter-spacing: 1px;
         text-align : center;

         }

.zeiledunkel {
background-color: #C7AF83;

}

.zeilehell {
background-color: #D5C09B;
}

a:aktive  {
color: #DAAC70;
text-transform: uppercase ;
  }

a:link  {
color: #AD9169;
text-decoration: none;
  }

a:visited  {
color: #AD9169;
text-decoration: none;
  }

a:hover  {
color: #AD9169;
text-transform: uppercase ;
  }

input, textarea  {
border: 1px #C5AB8B dashed;
background-color: #D2BDA7;
font-size: 11px;
color: #AD9169;
font-family: Verdana;
text-align: center;
size: 7;
  }

  h1
{
           text-align: right;
           font-size: 11px;
           letter-spacing: 2px;
           font-family: verdana;
           color: #AD9169;
           font-weight: bold;
           border-bottom: 1px solid #AD9169;
    }
anna.
Zeig mal die Seite, auf der die Tabelle ist. großes Grinsen
(keine Lust, selbst hochzuladen. xD)
Saijori
http://rvcherokee.bplaced.net/filemanager/bildnachweis.html

Mh.. da gehts irgendwie fröhlich Aber nicht wenn es eingebaut ist:

http://rvcherokee.bplaced.net musst dann noch im Menü Bildnachweis anklicken Augenzwinkern

/edit/ Jetzt geht es geschockt Habe nix gemacht aber es geht *freu*
anna.
großes Grinsen großes Grinsen großes Grinsen
Ich hab das Problem auch manchmal, dass der Browser es einfach nicht laden will und bin dann fast am Verzweifeln. War heute auch wieder mal so. Immer mit CSS^^ -.- XD [/spamende]