CSS — box-shadow, radius, centering the text inside a div circle
1 min readSep 13, 2018
box-shadow: 1px 1px 10px 5px #888888;
- h-offset
- v-offset
- blur
- spread
- color
- inset — optional —
#radius — create a circle shape div
width:100px;
height:100px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
# center a text inside the circle
>span{
display:table-cell;
vertical-align:middle;
height:100px;
width:100px;
text-align:center;
}
#reference
https://www.sitepoint.com/community/t/center-text-and-container-inside-a-circle/102963