Last active
November 1, 2018 11:34
-
-
Save junxi/9319529 to your computer and use it in GitHub Desktop.
Pure css three quarters circle
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
.three-quarters-circle { | |
width: 0px; | |
height: 0px; | |
border-radius: 100px; | |
border: 100px solid aqua; | |
border-top-color: transparent; | |
-webkit-transform: rotate(45deg); | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="css-three-quarters-circle" /> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="three-quarters-circle"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment