Timo: Text-Buttons mit CSS: klappt nur im IE

Beitrag lesen

Hallo zusammen,

ich möchte für meine Navigation mehrere Textbuttons/Textlinks in einer Tabellenzelle als Boxen mit selber Größe.
Ich habe es so gelöst:

.button {
 font-family: Arial, Helvetica, sans-serif;
 font-size: 11px;
 font-style: normal;
 height: 25px;
 width: 100px;
 text-decoration: none;
 color: #000000;
 background-color: #EAEAEA;
 text-align: center;
 vertical-align: middle;
 padding-top: 5px;
 font-weight: normal;

}

Im IE 6/7 werden die Buttons genau richtig angezeigt, im Mozilla/Firefox ist der Button nur so groß wie der enthaltene Link, nicht 100x25 wie er sein sollte.

Was mache ich denn falsch?