In Firefox, the following code works fine as I am using CSS3 to create rounded borders.
Can someone please advise on what changes are needed to achieve the same result in IE6?
Here 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 CSS3</div>
</body>
</html>
Thank you.