I am useing border-radius css property and its not working in ie any one can suggest me any idea so that i will start working in ie
<style>
.myclass
{
border-radius:10px;
}
</style>
I am useing border-radius css property and its not working in ie any one can suggest me any idea so that i will start working in ie
<style>
.myclass
{
border-radius:10px;
}
</style>
As you've not specified which version are you encountering this issue, if you are using IE < 9 than you need to use CSS3 Pie as @Rohit suggested, but if you are using IE > 9 than make sure you use <!DOCTYPE html>
and also use the below meta tag between the <head>
tags
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
Here, edge
forces the IE to use the latest rendering engine.
Also make sure you have Document Mode
set to IE9 Standards
if it's IE9, same goes for ver 10
Check Progressive Internet Explorer. This makes IE to obey some CSS3 properties.
PIE makes Internet Explorer 6, 7, 8
capable of rendering several of the most useful
CSS3 decoration features.
Check to Compatible of Border Radius Browser
try this
<style>
.myclass
{
border-radius:10px;
-ms-border-radius:10px;
}
</style>
if this not work than you are using older browser u should use pie.htc for ie