CSS3 Border Radius


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



Copy this code and paste it in your HTML
  1. -webkit-border-radius: 5px;
  2. -moz-border-radius: 5px;
  3. border-radius: 5px;
  4.  
  5. -webkit-border-top-left-radius: 5px;
  6. -webkit-border-top-right-radius: 5px;
  7. -moz-border-radius-topleft: 5px;
  8. -moz-border-radius-topright: 5px;
  9. border-top-left-radius: 5px;
  10. border-top-right-radius: 5px;
  11.  
  12. -webkit-border-bottom-right-radius: 5px;
  13. -webkit-border-bottom-left-radius: 5px;
  14. -moz-border-radius-bottomright: 5px;
  15. -moz-border-radius-bottomleft: 5px;
  16. border-bottom-right-radius: 5px;
  17. border-bottom-left-radius: 5px;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.