[HTML] Tabellen aussehen, brauche hilfe

Schatti
Ich möchte gerne das meine Tabelle einen Rahmen und auch eiine Linie um die Spalten und Zeilen haben und das soll einfach eine Linie sein die eine bestimmte Farbe haben soll.
Wie geht da der code?
Nanni
Ich denk, du meinst das so:

table, td {
border: 1px solid #000000;
background-color: #000000;
font-size:10pt; }

tr {
border: 1px solid #000000; }

Im Übrigen ist das CSS und gehört daher auch ins Stylesheet. Jedenfalls wenn dus mit dem Teil von oben machst Freude
Schatti
Hier mal der code für die Tabelle

}
TABLE {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
COLOR: #ffffff;
TEXT-ALIGN: center;
border-width: 1;
border-color: #ffffff;
border-style: none;
}

Wie muss ich das dann da einfügen?
Schatti
?
Schatti
Ja ie ich das einfügen muss in den Code oben
Schatti
Das sind alle was ich für die Tabellen habe

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:
TABLE {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
COLOR: #ffffff;
TEXT-ALIGN: center;
border-width: 1;
border-color: #ffffff;
border-style: none;
}
td, th {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
COLOR: #ffffff;
TEXT-ALIGN: center;
}
td#head {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
COLOR: #ffffff;
TEXT-ALIGN: center;
border-color: #8AB5C5;
border-width: 1;
background-image:url(reitstalltalhof-pattern.jpg);
}
td#dunkel {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
COLOR: #ffffff;
TEXT-ALIGN: center;
border-color: #677E12;
border-width: 1;
background-color: #677E12;
}
td#hell {
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana;
COLOR: #ffffff;
TEXT-ALIGN: center;
border-color: #A8C340;
border-width: 1;
background-color: #A8C340;
}