View Single Post
  #4 (permalink)  
Old 10-17-2009, 01:55 AM
Talicy Talicy is offline
Junior Babbler
 
Join Date: May 2009
Posts: 28
Talicy has a few positive reputation points
Default

Quote:
Originally Posted by TechieGuy View Post
James is right (as usual). I would use an image to display rounder corners.

As James also mentioned, CSS3 supports rounded corners using the -webkit-border-radius:[size];-moz-border-radius:[size]; definitions.

The problem with using CSS is that the above definitions are supported by Firefox but not IE. I'm not sure about the other browsers.
Yep, that's true. The effects don't work on IE yet, because it doesn't support CSS3.
Code:
-moz-border-radius
only displays rounded corners for Firefox, (notice the "moz" is probably from mozzila). However,
Code:
-webkit-border-radius
works for Chrome and Safari, as both are built from the Webkit open source project. (Not entirely sure)

The last thing about rounded corners with CSS3, or any CSS3 stuff (e.g.
Code:
@font-face
) will come out as error in validation, because it will say that this is currently an experimental feature. Even though, I use it because images are very annoying and messy (for me).
Reply With Quote