I have multiple divs like this
<div class='unit'>number1</div>
<div class='unit'>number2</div>
<div class='unit'>number3</div>
css
.unit{
border: solid 2px yellow;
float: left;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
vertical-align: middle;
}
I want to vertical align my contents for every unit so I used css above. However, I can only horizontally center the texts not vertical. Can anyone help me about it?