Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to show round corner buttons in ie but this was worked in all other browsers except ie. Border-radius:20px;
Posted

1 solution

Hi,

... as you have noticed, IE8 does not have native support for border-radius CSS3 property.

There is a plugin available that can provide round corners for IE8:

CSS3 PIE[^]

It's quiet easy to use, simply download and link the file PIE.htc from your css:
CSS
#yourElement {
    border: 1px solid #000;
    border-radius: 10px;
}
behavior: url(path/to/pie_files/PIE.htc);


Check out the getting started guide[^]

... hope it helps.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900