I m using ASP.NET and C#.Now i need to create rounded button that need to be support in all different browser. But Visual studio is not supporting this property.
Where am i going wrong?
Thanks.
Edit:
I did used this.
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
But no luck.
Update:
Thanks. After installing sp1 it worked.
The
border-radiusproperty is only available in not too ancestral browsers.See the compatibility table.
If you’re using an old IDE based on IE8, you can’t easily get all the niceties of CSS3.
SP1 solves some of the compatibility problems of Visual Studio 2010.