Can someone advice CSS styles for default input/submit button please? I need to mimic a default input/submit button with css. The default button is the one, which browser creates once you specify input type="button" in your HTML. I need to use the button that would look like default input/submit button inside href, but using button inside href is not legal in HTML5. So I want to do the following:
<a href="#"><span class="button">Input button</span></a>
Just need css for my class .button that would create the button that looks like default input/submit button.
Thank you all in advance.
<input type="submit">?