I am looking for the value="submit" to show up in the middle of the button. I am not seeing any text, not sure 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;
}
when you use the button tag, you put the text you want to be in the button between the opening and closing tag.
<button>Submit</button>
the value="Submit"
is only for <input type="button"
>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With