ラッパー div 要素に 28 個のリンクのセットがあります。それぞれがアルファベットの文字に数字の # を加えたもので、1 つは「すべて」を意味します。それぞれ左に浮いています。テキストを水平方向と垂直方向の中央に配置したい。以下のコードでは、水平方向に中央揃えにしていますが、display: table-cell. 誰にもアイデアはありますか?
a {
float: left;
position: relative;
display: table-cell;
width: 30px;
height: 30px;
margin: 0 4px 4px 0;
@include border-radius(4px);
text-align: center;
vertical-align: middle;
text-decoration: none;
color: #fff;
@include blue-gradient;
&:nth-of-type(14n) {
margin-right: 0;
}
&:hover {
top: -1px;
}
}
よろしく、 ニール