Skip to content

Instantly share code, notes, and snippets.

@asifvora
Created March 15, 2019 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asifvora/9a50264e241ee2e6e837dfcb885fca83 to your computer and use it in GitHub Desktop.
Save asifvora/9a50264e241ee2e6e837dfcb885fca83 to your computer and use it in GitHub Desktop.
Creates a circle shape with pure CSS.
<style>
.circle {
border-radius: 50%;
width: 2rem;
height: 2rem;
background: #333;
}
</style>
<div class="circle"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment