How to create a submit button that looks like an html text link.

Then apply CSS properties to strip away the submits button borders and background color

.submit {
border:none;
background-color: #fff;
padding: 0;
margin: 0;
width: 5em;
}

Then add a standard class to make the link perform a rollover effect

.submit:hover {
text-decoration: underline;
}

Check this works across all browsers.

Create a submit button that looks like an HMTL link