vertical-align-center static

by halirgb

HTML

<div class="box">
    <p>Some text</p>
</div>

CSS

.box{
    height:200px;
    line-height:200px;
    vertical-align:middle;
    background-color:red;
    text-align:center;
    color:white;
}