我正在尝试创建一个具有200pxheight
和 a的链接。width
链接的文本应垂直和水平居中。
到目前为止,这是我的 CSS:
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;
}
这是HTML代码:
<tr>
<td>
<a class="Kachel" href="#">Test</a>
</td>
</tr>
文本水平居中但不是垂直居中。
知道如何使文本水平和垂直居中吗?