i'm tring to vertically align a text that's inside of a div.
But for some reason vertical-align doesn't work.
.CV{
width: 100px;
height: 150px;
margin-left:auto;
margin-right:auto;
background-color: #89BC23;
text-align: center;
vertical-align: middle;
}
Here is what i have for now:
line-height doesn't work since i have two lines.
What am i missing?
Regards