Skip to content

Instantly share code, notes, and snippets.

@sarvar
Created August 22, 2019 02:17
Show Gist options
  • Save sarvar/dbeb9b60941d007f9cc35f03e337d71c to your computer and use it in GitHub Desktop.
Save sarvar/dbeb9b60941d007f9cc35f03e337d71c to your computer and use it in GitHub Desktop.
CSS Circle background in percentages
<div class="circle"><span>Lorem ipsum</span></div>
.circle {
width: 20%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin: 200px auto;
&:before {
border-radius: 50%;
width: 100%;
padding-bottom: 100%;
background: $color;
content: "";
position: absolute;
z-index: -1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment