How can show image on submit button?

background-image, button, css, html, submit

Solution

You can use CSS to style the button approprately

​<input id="it" type="submit" value="Submit">​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
​#it{
    background-image:url(http://placehold.it/50x50);
    font-size:0;
    width:50px;
    height:50px;
}​

DEMO

Problem

I have a submit button and I want to show an image(a.jpg) on that button and won't show the value of submit button. Is it possible in case of a 'submit' type button ? (not "type='image'") ``` <input type="submit" value="submit" /> ``` -Thanks.

Original source