CSS kod:<code> Löste det själv genom att ta bort "height" och justera det med "padding". Rätt eller fel men resultatet blir korrekt.Vertikal centrering i DIV
#bottom
{
width: 57.4em;
height: 2em;
clear: both;
padding: .3em;
background-color: #36566d;
text-align: center;
color: #FFF;
font-weight: bold;
}</code>
HTML kod:<code>
<div id="bottom">
bottom
</div></code>
Fråga: Hur centrerar jag texten bottom vertikalt?Sv:Vertikal centrering i DIV
<code>#bottom
{
width: 56em;
padding: 1em;
clear: both;
background-color: #003746;
text-align: center;
color: #FFF;
font-weight: bold;
}</code>