zoukankan      html  css  js  c++  java
  • 如何使带背景图片的Button按钮中的文字居中偏上显示

    .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;
    	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;
    	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>层把你所要添加的文字包起来,然后设置距离图片上下边界的距离即可。

  • 相关阅读:
    c/c++:字符串输入输出流
    POJ 1036Gangsters【DP】
    POJ 1157LITTLE SHOP OF FLOWERS【DP】
    一个月后....
    http://poj.org/problem?id=1258
    POJ 2677 Tour【DP】
    POJ 1160Post Office【DP】
    C基础
    linux面试fork函数题
    linux学习
  • 原文地址:https://www.cnblogs.com/jinfenglee/p/4388713.html
Copyright © 2011-2022 走看看