Maike: Stylesheets

Beitrag lesen

Dein <font> Tag ist einfach deplatziert. Lass in Deiner CSS-Anweisung das "font. ..." weg, d.h. mach einfach ein ".smallContent" draus und binde das 'class="smallContent"' in Deine Table-Tag bzw. für Opera am besten gleich in Deine td-Tags ein:

<td class="smallContent">...</td> etc.

Dann funktioniert es. Das <font>-Tag ist (nicht nur so wie Du es hier verwendest) total überflüssig...

Hi Lemmy,
mein <font> Tag ist richtig plaziert. Es wird ganz oben hinter <body> plaziert und unten unter </body> dann </font>.
Wenn ich aber nur .contentSmall definiere, ohne font., dann muss ich in jedem tag (in jeder Tabelle usw.) class="contentSmall" eintragen. Genau das will ich mir aber sparen.. und deshalb mache es mit font.. verstehst du?
hier nochmal:
contentSmall  {
 font-size : 8px;
 font-family : Arial;
 text-decoration : none;
 color : #000000;
}

contentSmall a:link  {
 font-size : 8px;
 font-family : Arial;
 text-decoration : none;
 font-weight : bold;
 color : #000000;
 line-height : 11px;
}

contentSmall a:visited  {
 font-size : 8px;
 font-family : Arial;
 text-decoration : none;
 font-weight : bold;
 color : #000000;
 line-height : 11px;
}

contentSmall a:hover  {
 font-size : 8px;
 font-family : Arial;
 text-decoration : underline;
 font-weight : bold;
 color : #364152;
 line-height : 11px;
}

contentSmall a:active {
 font-size : 8px;
 font-family : Arial;
 text-decoration : none;
 font-weight : bold;
 color : #364152;
 line-height : 11px;
}