Bulletproof Rounded Corners With Border Radius


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

If you have not already been writing your border-radius statements with progressive enhancement in mind, now is most definitely the time to do it.


Copy this code and paste it in your HTML
  1. .box {
  2. -khtml-border-radius: 5px;
  3. -moz-border-radius: 5px;
  4. -webkit-border-radius: 5px;
  5. border-radius: 5px;
  6. }

URL: http://sam.brown.tc/entry/412/bulletproof-rounded-corners-with-border-radius

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.