/ Published in: SASS
based on "jmacgr" snippet
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
@mixin rounded-corners( $top, $right, $down, $left ) { -moz-border-radius: $top $right $down $left; /* Firefox */ -webkit-border-radius: $top $right $down $left; /* Safari, Chrome */ border-radius: $top $right $down $left; /* CSS3 */ }