Cross Browser Round Corners


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

Cross browser css round corners with no images, using google's code .htc
http://code.google.com/p/curved-corner/


Copy this code and paste it in your HTML
  1. .round{
  2. -moz-border-radius: 6px;
  3. -khtml-border-radius: 6px;
  4. -webkit-border-radius: 6px;
  5. border-radius: 6px;
  6. behavior: url(border-radius.htc)
  7. }

URL: http://www.plan-zero.org

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.