[CSS] Cascading Stylesheet | Tabellenrand

Geronimo
Kann mir einer sagen, wie ich im Style code den Tabellenrand (Farbe) angebe. Also z.B. bei Textareas heißt es bei mir

textarea{
color: #878C58;
background-image: url(http://rszhalver.rs.funpic.de/halver/grafics/tablehg.jpg);
font-family: verdana;
font-size: 8pt;
text-align: center;
text-decoration: none;
border-color: 1px solid #878C58;

}
Black Katrin
immer gleich: border-color
Geronimo
Klar aber wie muss der ganze code heißen?

also z.B. bei texarea is ja

textarea{
color: #878C58;
background-image: url(http://rszhalver.rs.funpic.de/halver/grafics/tablehg.jpg);
font-family: verdana;
font-size: 8pt;
text-align: center;
text-decoration: none;
border-color: 1px solid #878C58;

}

wenn ich dann für tabelle so mache gehts nid

table{
font-family: verdana;
font-size: 8pt;
text-align: center;
text-decoration: none;
border-color: 1px solid #878C58;

}
janinchen
lass mal das "-color" weg, also
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
table {

font-family: verdana;
font-size: 8pt;
text-align: center;
text-decoration: none;
border: solid 1px #878C58;
}