I am looking for value = "send" to display in the middle of the button. I don’t see any text, I don’t know why?
<button type="button" class="button btn_big_blue" value="Submit"></button>
.button{
display: block;
width: 137px;
height: 44px;
text-align:center;
line-height: 40px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
color:#fff;
border:none;
cursor: pointer;
}
.button.btn_big_blue {
background: url(/img/btn_big_blue.png) no-repeat;
color: #fff;
}
Xtian source
share