Created
March 15, 2019 05:19
-
-
Save asifvora/9a50264e241ee2e6e837dfcb885fca83 to your computer and use it in GitHub Desktop.
Creates a circle shape with pure CSS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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