CSS border-radius 没有供应商前缀?
有没有办法在没有 -moz
的情况下制作半径边框,因为这只适用于 Mozilla 浏览器?
-moz-border-radius-topleft:3%;
-moz-border-radius-topright:3%;
-moz-border-radius-bottomright:3%;
-moz-border-radius-bottomleft:3%;
Is there any way to make radius border without -moz
, cause this only works for on Mozilla browsers?
-moz-border-radius-topleft:3%;
-moz-border-radius-topright:3%;
-moz-border-radius-bottomright:3%;
-moz-border-radius-bottomleft:3%;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
-webkit
的供应商前缀和无前缀版本,就像这样......我很确定 Firefox 4 现在支持无供应商属性。
Use a vendor prefix for
-webkit
and the prefixless version, like so...I'm pretty sure Firefox 4 is supporting the vendorless property now.
获取出色的圆角插件
您可以采用 jQuery 方式并在http://jquery.malsup.com/corner/
所有浏览器都支持,包括 IE。它使用嵌套 div(而不是图像)在 IE 中绘制角点。它还在支持它的浏览器(Opera 10.5+、Firefox、Safari 和 Chrome)中具有本机边框半径舍入。因此,在这些浏览器中,插件只需设置一个 css 属性即可。
以下是如何使用它
您需要在
之前包含 jQuery 和 Corner js 脚本。然后像 $('div, p').corner('10px'); 一样编写 jQuery并放在 '' 之前。所以你的 html 将类似于下面的代码。在这里,我为所有
div
和p
标签制作圆角。如果您想针对特定的 id 或类执行此操作,则可以执行类似$('#myid').corner();
的操作,请在 http://jsfiddle.net/VLPpk/1
You can go the jQuery way and get the excellent round corner plugin at
http://jquery.malsup.com/corner/
It's supported in all browsers including IE. It draws corners in IE using nested divs (not images). It also has native border-radius rounding in browsers that support it (Opera 10.5+, Firefox, Safari, and Chrome). So in those browsers the plugin simply sets a css property instead.
Here's How to use it
You need to include the jQuery and the Corner js script before
</body>
. Then write your jQuery like $('div, p').corner('10px'); and place before ''. So your html will look like the below code. Here i'm making round corners for alldiv
andp
tags. If you want to do it for specific id or class then you can do something like$('#myid').corner();
Check working example at http://jsfiddle.net/VLPpk/1
等等,它还不是标准*化*,所以你
不能不应该只使用border-radius
。阅读https://developer.mozilla.org/en/CSS/border-radius
etc, it is not a standard*ized* yet so you
can'tshouldn't use onlyborder-radius
.Read https://developer.mozilla.org/en/CSS/border-radius