Skip to content

Instantly share code, notes, and snippets.

@rabidaudio
Created January 26, 2015 02:12
Show Gist options
  • Save rabidaudio/4ffdc2a81bd6811c608a to your computer and use it in GitHub Desktop.
Save rabidaudio/4ffdc2a81bd6811c608a to your computer and use it in GitHub Desktop.
Round avatar icons
<style>
.avatar {
/* This is the size. TODO how to scale dynamically? */
width: 3em;
padding-bottom: 3em;
height: 0;
overflow: hidden;
border-radius: 9999px;
position: relative;
}
.avatar img {
width: 100%;
bottom: 0px;
position: absolute;
}
</style>
<div class="avatar"><img src=""></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment