我已经修改了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
无效。
答案 0 :(得分:2)
.ui-button {line-height:20px;}
答案 1 :(得分:0)
使用position
时,请务必指定top
left
,bottom
right
....
答案 2 :(得分:0)
试试这个
.ui-button {
display: table-cell;
position: relative;
padding: 0px;
margin-right: 0.1em;
cursor: pointer;
text-align: center;
overflow: visible;
height: 50px;
}