2013-06-19 90 views
0

我很長一段時間都在爲這個問題而努力,並嘗試了很多類似於stackoverflow的主題,但無法解決我的問題。 這裏是我的代碼:如何將按鈕中的文本與中心對齊?

<p:commandButton id="verifyButtonId" value="Verify" ajax="true" actionListener="#{LocationEditBean.verifyAccess}" update="panelVerifyMessageId" style="height:25px; line-height:25px; vertical-align:middle;" rendered="#{LocationEditBean.showVerify}"> 
           <f:param value="#{LocationEditBean.classifiedObject.ID}" name="editId"/> 
          </p:commandButton> 

在命令按鈕的文本不能對齊垂直中心。誰能幫我這個?

+0

你可以試試vertical-align:center;和文本對齊:中心? – bot

回答

0
you can try adding the following style to your button: 

style= 
    "font-family: Arial, Helvetica, sans-serif; 
    font-weight: normal; 
    color: #444; 
    min-width: 90px; 
    padding:5px; 
    margin: 5px 10px; 
    background-color: #fdfdfd; 
    border: 1px solid #cdcdcd; 
    cursor: pointer; 
    border-radius: 3px;" 
+0

感謝您快速回復Karthi。它似乎無法工作,因爲我必須將高度設置爲我的預期,但不是默認高度。 – user2248738

+0

嘗試添加:padding:0px; margin:0px;(對於您的代碼) – karthi

+0

仍然相同... – user2248738