CSS- Border Radius Property

1 replies
  • WEB DESIGN
  • |
I recently saw that the next version of CSS will include the border radius property for making rounded corners.

Does anyone know which browsers will support it and what work arounds will be available?:confused:
#border #css #property #radius
  • Profile picture of the author Darren Mothersele
    I'm using it on some sites already, to make minor UI bits and pieces look nicer. You can get good results across all browsers (except IE) if you use this CSS code:

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

    Wordpress uses this too - if you look in the admin section of a wordpress blog you will see some buttons (eg tags) have nice rounded corners in FireFox or Webkit based browsers (like Safari). You will see a square box in IE.
    {{ DiscussionBoard.errors[413016].message }}

Trending Topics