What's the latest solution for rounded corners?

落花浮王杯 提交于 2019-12-04 09:49:27

The optimal solution at the moment is to use:

selector {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

That will work in "all" modern browsers including IE9, see: http://caniuse.com/#search=border-radius

By far the best workaround for older versions of IE is to use CSS3 PIE:

PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features.

PIE currently has full or partial support for the following CSS3 features:

border-radius
• box-shadow
• border-image
• multiple background images
• linear-gradient as background image

As you can see, you also get support for more CSS3 eye candy

For most browsers, CSS3 provides a way.

http://jonraasch.com/blog/css-rounded-corners-in-all-browsers

.rounded-corners {
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
}

No need for images anymore.

If you must support IE8 and earlier, here are a number of ways to accomplish rounded corners.

According to that Microsoft page:

Windows Internet Explorer 9 supports adding rounded corners to elements using the border-radius properties.

It also suggests these pages which claim to be updated:

25 Rounded Corners Techniques with CSS

CSS Rounded Corners 'Roundup'

Rounded Corners

Without having read all of these many approaches, I'd hazard a guess that there is no universal best solution at the moment. Until we can assume that pretty much all of our visitors have CSS3-compliant browsers, you have to make some choices.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!