Rounded Corners CSS3


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



Copy this code and paste it in your HTML
  1. /* doesn't work with IE without CSS3 standard */
  2. .round_corner{
  3. display: block;
  4. width: 300px;
  5. height: 200px;
  6. background-image: url(ddd.jpg) ;
  7.  
  8. -moz-border-radius: 20px; /* Mozilla Firefox */
  9. -webkit-border-radius: 20px; /* Webkit instructions e.g. Crome, Safari */
  10. boder-radius: 20px; /* CSS3 standard */
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.