The support of browsers for rounded corners has not reached the level so we could use as default solution but there are always part of the site where it kind of make sense to use it. What i mean is that it will not really break the visual experience if the corners will not be rounded in some browsers (we talking Internet Explorer here).
The support for rounded corners is not the same across the browsers but there are ways around. This is what you need to do so the rounded corners syntax is understood by all browsers who are able to handle it.
Lets say we have class called “rounded_corners” we want to apply the rounded corners.
.rounded_corners {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
I would recommend to store this syntax as snippet if you text editor supports code snippets. You could assign shortcut such is “round” which would bring both of this CSS properties so you do not have to remember them. They are not the best to remember. Coda and TextMate supports code snippets.