I was trying to give a rounded corners effect to the buttons on my ASP.NET website using CSS by using the CSS and .js script from here.
http://www.monc.se/kitchen/59/scalable-css-buttons-using-png-and-background-colors
I just need to reference the buttons with the class. For eg:
<head>
<link rel="stylesheet" type="text/css" href="css/btns.css" media="screen" />
<link rel="alternate stylesheet" type="text/css" href="css/ie6.css" media="screen" title="ie6" />
<script type="text/javascript" src="switch.js"></script>
</head>
-----Body---
<a href="" class="btn green">Test </a>
But the above is not giving me the rounded corners effect through it is applying the green color property and the hover color from the CSS but the main thing I wanted was the corners effect. What I am missing here?
That should work in most browsers.