我想在我的div上创建圆角.我在ASP.NET MVC 3应用程序中使用标准模板.
我遵循了这个指南:
http://viralpatel.net/blogs/2009/08/rounded-corner-css-without-images.html
基本上你把它放在你的css文件中:
#selector {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
Run Code Online (Sandbox Code Playgroud)
和
<div id="selector">
Run Code Online (Sandbox Code Playgroud)
为什么我的网站没有在我的div上显示圆角?我尝试过使用Firefox和Chrome.