CSS rounded corners cross-browser


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. -moz-border-radius:10px; /* Firefox */
  2. -webkit-border-radius:10px; /* Safari and chrome */
  3. -khtml-border-radius:10px; /* Linux browsers */
  4. border-radius:10px; /* CSS3 */

URL: http://perishablepress.com/press/2008/11/24/perfect-rounded-corners-with-css/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.