I have a <div> element that contains text and I am trying to align the contents of this <div> vertically center.
#box {
height: 170px;
width: 270px;
background: #000;
font-size: 48px;
color: #FFF;
text-align: center;
}
<div id="box">
Lorem ipsum dolor sit
</div>
What is the best way to achieve this goal?