I have 2 problem with below css
#calendarWrap div{
display: inline-block;
width: 50px;
height: 50px;
background: white;
border: 1px solid black;
text-align: center;
padding: 30px;
}
* {
box-sizing:border-box;
}
https://jsbin.com/bononudiju/edit?html,css,output
Why the content isn't center completely? It's slightly off down to the bottom, it should be a little bit up. Do I have to adjust the position manually? I know I can using position relative, but is there anyway I can make it center regardless the height and width?
Why there's gab between the boxes?