I want to center this headline vertically:
<div class="headline>
<div class="field-wrapper">
<h1>Pressrelease</h1>
</div>
</div>
... by using absolute posiitioning like this:
.headline {
position: relative;
}
.field-wrapper{
position: absolute;
top: 0px;
bottom: 0px;
margin-top: auto;
margin-bottom: auto;
}
This works in (latest versions of) Chrome but not in Firefox and IE. What do I need to do to center vertically in all browsers?