rounded-corners css3 sass


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

based on "jmacgr" snippet


Copy this code and paste it in your HTML
  1. @mixin rounded-corners( $top, $right, $down, $left ) {
  2. -moz-border-radius: $top $right $down $left; /* Firefox */
  3. -webkit-border-radius: $top $right $down $left; /* Safari, Chrome */
  4. border-radius: $top $right $down $left; /* CSS3 */
  5. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.