Skip to content

Instantly share code, notes, and snippets.

@levnovikov
Last active December 27, 2015 17:19
Show Gist options
  • Save levnovikov/7361188 to your computer and use it in GitHub Desktop.
Save levnovikov/7361188 to your computer and use it in GitHub Desktop.
Rounded images. Use div tag (<div class="avatar"><img src="..." /></div>).
.avatar img {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment