Skip to content

Instantly share code, notes, and snippets.

@kogakure
Created February 12, 2013 13:31
Show Gist options
  • Save kogakure/4769904 to your computer and use it in GitHub Desktop.
Save kogakure/4769904 to your computer and use it in GitHub Desktop.
SASS: Circle Mixin
@mixin circle($width, $color) {
width: $width;
height: $width;
background: $color;
-webkit-border-radius: $width/2;
-moz-border-radius: $width/2;
border-radius: $width/2;
}
.circle {
@include circle(200px, #999);
}
@cinatic
Copy link

cinatic commented Apr 5, 2018

border-radius: 50%;
has the same effect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment