Dear experts, I tried to align the paragraph to the middle of the separation element via CSS, and somehow I can not get it to work.
<style type="text/css">
.wrap{
background:red;
height: 5em;
}
p{
background:blue;
height: 2em;
vertical-align:middle;
}
</style>
<div class="wrap">
<p>
ALIGN TEXT
</p>
</div>
It does not work in IE or firefox,
source
share