Rounded Corners - CSS3 // Cross Browser


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



Copy this code and paste it in your HTML
  1. .box_round {
  2. -moz-border-radius: 12px; /* FF1 */
  3. -webkit-border-radius: 12px; /* Saf3 , Chrome */
  4. border-radius: 12px; /* Opera 10.5, IE 9 */
  5. }

URL: http://css3please.com/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.