as shown in the figure, I added four sibling DIV of .numberItem to html. Styles are as follows: 
, 
.numberItem{
        width:60px;
        height:100px;
        border:solid ;
        display:inline-block;
        font-size:50px;
        text-align:center;
    }
, 
 where I added words to the first DIV: 
, 
         <div class="numberItem">5</div>
         <div class="numberItem"></div>
         <div class="numberItem"></div>
         <div class="numberItem"></div>
,
the resulting style is as follows:
 
 
Why does it move down?


