Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #container {
  2. -webkit-border-radius: 4px 3px 6px 10px;
  3. -moz-border-radius: 4px 3px 6px 10px;
  4. -o-border-radius: 4px 3px 6px 10px;
  5. border-radius: 4px 3px 6px 10px;
  6. }
  7.  
  8. /* alternative syntax broken into each line */
  9. #container {
  10. -webkit-border-top-left-radius: 4px;
  11. -webkit-border-top-right-radius: 3px;
  12. -webkit-border-bottom-right-radius: 6px;
  13. -webkit-border-bottom-left-radius: 10px;
  14.  
  15. -moz-border-radius-topleft: 4px;
  16. -moz-border-radius-topright: 3px;
  17. -moz-border-radius-bottomright: 6px;
  18. -moz-border-radius-bottomleft: 10px;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement