我正在尝试创建带有自定义颜色和图像/文本的按钮。添加颜色和图像/文本非常容易,但是现在我在垂直对齐方面遇到了问题。 “文本对齐:居中”帮助我进行了水平对齐,但垂直对齐没有帮助。

<ui:style>
    .gwt-b {
        margin: 50px;
        height: 23px;
        width: 60px;
        color: #fff;
        font-size: 12px;
        font-family: arial, sans-serif;
        text-align: center;
        vertical-align: middle;
        background: -webkit-linear-gradient(top,#4d90fe,#357ae8);
        border: 1px solid #3079ED;
        outline-color: #3079ED;
        outline-width: 3px;
    }
</ui:style>

<g:HorizontalPanel>
    <g:PushButton ui:field='pushButton' enabled='true' addStyleNames="{style.gwt-b}">
        <g:upFace image="{res.search}">
        </g:upFace>
    </g:PushButton>

    <g:PushButton ui:field='pushButton2' enabled='true' addStyleNames="{style.gwt-b}">
        <g:upFace>
            <b>click me</b>
        </g:upFace>
    </g:PushButton>
<g:HorizontalPanel>


这是我所拥有的:

最佳答案

.gwt-b {
    ...
    line-height: 12px;
    ...
}

关于css - GWT按钮图像/文本对齐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9150613/

10-09 22:23