This is not working in IE:
.text-button { background: transparent;
text-decoration: none;
cursor: pointer; }
Try this:
<style type="text/css">
.text-button
{
background-color: Transparent;
text-decoration: underline;
color: blue;
cursor: pointer;
border:0
}
</style>
<input type="submit" class="text-button" value="vote+"/>
I believe the answer submitted above by mofolo is the more correct solution
CSS styling of submit buttons to make them look like anchor tags does NOT cross browser. The text-decoration:underline style is ignored by many browser types.
The best method in my experience is to use javascript on an anchor tag's onclick event.
For example:
A "Delete" link on a user details form screen, with confirmation before submitting the form with an id of "userdetails"
<a href="#" onclick="if(confirm('Are you sure you want to delete this user?')){document.forms['userdetails'].submit();}return false;">Delete</a>