画像の背景が適用されたボタンがあります。ボタンタグの中にはテキストがあります。テキストを中央に配置するために、パディングを使用して配置しています。ただし、位置内のテキストを変更するたびに影響を受けるため、パディングを再度修正する必要があります。長さに関係なくテキストを中央に配置する方法はありますか?
私のコード:
<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;
}