Border Radius in Google Chrome 8
I've noticed that Google Chrome 8 Accepts:
border-radius:5px;
compared to the previous
-webkit-border-radius:5px;
Since Google Chrome updates automatically, is it time to convert all my -webkit-border-radius rules to just border-radius? Or should i just add border-radius to my rules?
Also please take Safari, iPhone into consideration.
Thank you开发者_开发问答 in advanced.
Just add. Safari still needs the -webkit version afaik. Plus, there are always those few with autoupdates turned off.
You should probably keep both for the time being, if you intend to support older versions of Safari (the current version also accepts border-radius
without the prefix).
精彩评论