Apr 18

height: 60px;
height: auto !important;
min-height: 60px;

written by rzelazko

Apr 18

Problem solved on: www.jakpsatweb.cz

written by rzelazko

Apr 18

Info

Setting vertical aligment to middle for one (!!!) line of text.

Solution

In css styles:

.mid {
height: 2em;
line-height: 2em;
background-color: #eee;
}

In html code:

<p class="mid">Lorem ipsum etc.</p>

written by rzelazko