Hi
I am executing the foll code in Firefox it works fine i am basically using CSS3 for creating rounded borders.
Please tell what changes I need to make to get the same output in IE6
Below is the code
<html>
<head>
<style type="text/css">
background-color: #ccc;
-moz-border-radius: 5px;
-webkit-border-radius: 5px; border: 1px solid #000;
padding: 10px;
</style>
</head>
<body>
<div style=" background-color: #ccc; -moz-border-radius: 5px; -webkit-border-radius: 5px; border: 1px solid #000; padding: 10px;" >
This is a new feature in CSS 3 </div>
</body>
</html>
Thanks