HTML-CSS centrer le Texte horizontalement et verticalement dans un lien

Je suis en train de faire un lien qui a un height et un width de 200px.
Le texte du lien doit être centré verticalement et horizontalement.

C'est mon CSS pour l'instant:

a:link.Kachel {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: block;
  text-align: center;
  background: #383838;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
}

et ce le code HTML:

<tr>
  <td>
    <a class="Kachel" href="#">Test</a>
  </td>
</tr>

Le texte est centrée horizontalement mais pas verticalement.

Aucune idée comment faire pour obtenir le texte centré à la fois horizontalement et virtically?

InformationsquelleAutor user1567896 | 2013-02-13