wahsaga: Tabellengröße unterschiedlich bei IE und Mozilla

Beitrag lesen

hi,

A:link        { text-decoration: none; color: #000000; }
A:visited     { text-decoration: none; color: #000000; }
A:hover       { text-decoration: none; color: #0000FF; }

text-decoration:none soll also offenbar für alle linkzustände zutreffen - dann schreib stattdessen
a { text-decoration: none; }
und gib bei den pseudoformaten nur noch die abweichenden werte (hier:color-angabe) an.

.TableT1      { height:100px; width:100px; }
.TableT3      { height:100px; width:100px; }

zwei klassen mit identischer formatierung -> _eine_ klasse.

.TableT2      { height:100%;               }
.TableT4      { height:100%;               }

dito.

.TableT5      { height:5px;   width:100px; background-image:url(Pics/line2.bmp) }
.TableT5      { height:5px;   width:100px; background-image:url(Pics/line2.bmp) }

zwei mal die gleiche formatierung für _eine_ klasse?
falls tippfehler: siehe oben.

gruss,
wahsaga