Posted By


Barlon on 11/13/11

Tagged


Statistics


Viewed 444 times
Favorited by 0 user(s)

CSS3 fallback prefixes


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

CSS3 fallback prefixes for major browser-vendors.


Copy this code and paste it in your HTML
  1. Webkit: -webkit-
  2. Mozilla: -moz-
  3. Opera: -o-
  4. Konqueror: -khtml-
  5. Microsoft: -ms-
  6. Chrome: -chrome-
  7.  
  8. .foo {
  9. -webkit-border-radius: 10px;
  10. -moz-boder-radius: 10px;
  11. border-radius: 10px;
  12. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.