Cross-browser CSS3 border-radius (rounded corners)


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



Copy this code and paste it in your HTML
  1. .rounded-corners {
  2. -moz-border-radius: 10px; /* Firefox */
  3. -webkit-border-radius: 10px; /* Safari, Chrome */
  4. border-radius: 10px; /* CSS3 */
  5. }

URL: http://dimox.net/cross-browser-border-radius-rounded-corners/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.