I want to center vertically these lines. I tried the line-height
method, but the lines don't adjusts on the holder .item
.
I have this HTML:
<li><a href="#" class="item">
<span>Line 1</span><br>
<span>Line 2</span><br>
<span>Line 3</span>
</a>
</li>
And CSS:
.item {
text-align: center;
display: block;
height: 125px;
padding: 10px 0;
border-radius: 2px;
margin-bottom: 10px;
color: #fff;
}