0

クラスの高さを少し変更しましたui-buttonが、テキスト ボタンはその下部に残ります。どうすれば真ん中に合わせることができますか?

.ui-button {
   display: inline-block;
   position: relative;
   padding: 0px;
   margin-right: 0.1em;
   cursor: pointer;
   text-align: center;
   overflow: visible;
   // resize a bit the height
   height: 20px;
}

vertical-alignうまくいきませんでした。

http://jsfiddle.net/PM4T6/

4

3 に答える 3

2

.ui-button {line-height: 20px;}

于 2013-02-25T08:14:32.193 に答える
0

これを試して

.ui-button {
   display: table-cell;
   position: relative;
   padding: 0px;
   margin-right: 0.1em;
   cursor: pointer;
   text-align: center;
   overflow: visible;
   height: 50px;
}
于 2013-02-25T08:19:54.897 に答える
0

を使用する場合は、position必ずtop left, bottom right....を指定してください。

于 2013-02-25T08:14:57.247 に答える