Last active
May 12, 2016 22:25
-
-
Save s-hiroshi/dbd68c6065c635d448a9 to your computer and use it in GitHub Desktop.
CSSで円(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
.circle { | |
display: inline-block; | |
width: 60px; | |
height: 60px; | |
border-radius: 30px; | |
color: #fff; | |
background: #ff0000; | |
font-size: 0.75em; | |
font-weight: bold; | |
text-align: center; | |
line-height: 60px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment