CSS Schriftgröße festlegen

Hallo,

ich möchte in einem zentralen Stylesheet die Schriftgröße für den Fließtext festlegen. Das klappt auch soweit ganz gut, allerdings gilt diese Angabe scheinbar nicht für Text innerhalb von Tabellen.

Wie kann ich festlegen, dass „normaler“ Text auch in Tabellen immer die von mir angegebene Schriftgröße hat?

Hier mein Stylesheet:

body { background-color:#FFFFCC; font-family: Verdana; font-size: 10pt; }
p { color:#000000; font-size: 10pt; }
h1 { color:#006633; font-size: 24pt; }
h2 { color:#006633; font-size: 18pt; }
h3 { color:#006633; font-size: 14pt; }
h4 { color:#006633; font-size: 12pt; }
a:link { color:#006600; text-decoration:none }
a:visited { color:#663300; text-decoration:none }
a:hover { color:#009900; text-decoration:none }
a:active { color:#663300; text-decoration:none }

Danke,

Myriam

body { background-color:#FFFFCC; font-family: Verdana;
font-size: 10pt; }
p,td,th { color:#000000; font-size: 10pt; }
h1 { color:#006633; font-size: 24pt; }
h2 { color:#006633; font-size: 18pt; }
h3 { color:#006633; font-size: 14pt; }
h4 { color:#006633; font-size: 12pt; }
a:link { color:#006600; text-decoration:none }
a:visited { color:#663300; text-decoration:none }
a:hover { color:#009900; text-decoration:none }
a:active { color:#663300; text-decoration:none }

Hi Myriam,
versuche es doch einmal mit dem „class“ Attribut.
Beispiel:
.rot {font-size: 0.9em;font-colour:„red“} …und soweiter…

…im Quelltext dann
mein text.mein text

Gruß
knobi99

[Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]