
i need to set an image on submit button. In javascript we can create a button like..
<a href="javascript:;" class="button">Sign up</a>
But how will i do it from CSS?

The best way is to set the background transparent.
border: none;
background: transparent;
cursor: pointer;
or
input[type=submit] {
background: transparent url("path/to/image.jpg") 0 0 no-repeat;
font-weight: bold;
display: inline-block;
text-align: center;
cursor: pointer;
height: 331px; /* height of the background image */
width: 500px; /* width of the background image */
border: 5px solid #fff;
border-radius: 4em;
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.