CSS border-radius 没有供应商前缀?

发布于 2024-10-31 00:04:23 字数 224 浏览 2 评论 0原文

有没有办法在没有 -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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

半夏半凉 2024-11-07 00:04:23

使用 -webkit 的供应商前缀和无前缀版本,就像这样......

-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;

我很确定 Firefox 4 现在支持无供应商属性。

Use a vendor prefix for -webkit and the prefixless version, like so...

-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;

I'm pretty sure Firefox 4 is supporting the vendorless property now.

回梦 2024-11-07 00:04:23

获取出色的圆角插件

您可以采用 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 将类似于下面的代码。在这里,我为所有 divp 标签制作圆角。如果您想针对特定的 id 或类执行此操作,则可以执行类似 $('#myid').corner();

<body>
    <div class="x"></div>
    <p class="y"></p>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://github.com/malsup/corner/raw/master/jquery.corner.js?v2.11"></script>
    <script>$('div, p').corner();</script>
</body>

操作,请在 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 all div and p tags. If you want to do it for specific id or class then you can do something like $('#myid').corner();

<body>
    <div class="x"></div>
    <p class="y"></p>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://github.com/malsup/corner/raw/master/jquery.corner.js?v2.11"></script>
    <script>$('div, p').corner();</script>
</body>

Check working example at http://jsfiddle.net/VLPpk/1

苹果你个爱泡泡 2024-11-07 00:04:23
-moz-border-radius:3%;
-webkit-border-radius:3%;
-o-border-radius:3%;
border-radius:3%;

等等,它还不是标准**,所以你不能不应该只使用border-radius

阅读https://developer.mozilla.org/en/CSS/border-radius

-moz-border-radius:3%;
-webkit-border-radius:3%;
-o-border-radius:3%;
border-radius:3%;

etc, it is not a standard*ized* yet so you can't shouldn't use only border-radius.

Read https://developer.mozilla.org/en/CSS/border-radius

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文