I\'m using ASP.NET, some of my buttons just do redirects. I\'d rather they were ordinary links, but I don\'t want my users to notice much difference in the appearance. I c
The CSS3 appearance
property provides a simple way to style any element (including an anchor) with a browser's built-in styles:
a.btn {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
}
CSS Button
CSS Tricks has a nice outline with more details on this. Keep in mind that no version of Internet Explorer currently supports this according to caniuse.com.