您的位置:首页 > 其它

如何使带背景图片的Button按钮中的文字居中偏上显示

2014-04-18 09:53 706 查看
.button_submit {
/* background: #df5e16;  */
background:url("../images/image_mobile/m_start.png") no-repeat;
height: 33px;
line-height: 33px;
font-size: 18px;
color: #000;
font-family: 'Microsoft YaHei' !important;
font-weight: normal !important;
border: none;
width:229px;
text-align: center;
/* 	vertical-align:middle; */
/* 	margin: 0 auto; */
display:inline-block;

}

.button_submit:hover {
background:url("../images/image_mobile/m_select.png") no-repeat;
height: 33px;
line-height: 33px;

font-size: 18px;
color: #000;
font-family: 'Microsoft YaHei' !important;
width:229px;
/* vertical-align:middle; */
margin: 0 auto;
display: block;
}

在html代码中:

<div style=" padding-top: 40px; text-align: center;" >
<button  class="button_submit" type="submit">
<div style="padding-bottom: 5px; font-size: 16px;" class="yahei">提  交</div>
</button>
</div>


你需要做的就是在<button> 元素中使用一个<div>层把你所要添加的文字包起来,然后设置距离图片上下边界的距离即可。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: