This is not working in IE:
.text-button { background: transparent;
text-decoration: none;
cursor: pointer; }
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"
Delete