我有一個應用了圖像背景的按鈕。在按鈕標籤內有一些文字。爲了使文本居中,我使用填充來定位它。然而,每次我更改位置內的文本都會受到影響,我需要再次修復填充。不管長度如何,是否有一種保持文本居中的方法?圖像背景和文字按鈕
我的代碼:
<button type="button" class="scroll_button" id="scroll">SIGN UP NOW</button>
.scroll_button{
background: url('../images/button_arrow.png') no-repeat 0 0;
padding: 24px 65px 45px 35px;
border: 0;
float: left;
margin-top: -100px;
color: white;
text-transform: uppercase;
font-size: 16px;
cursor: pointer;
}
你試過'文本align' – Patrick
'的text-align:?中心;' – knittl