I am currently working on a website and for the page titles / post titles i have a div to set color and some text in the center. It works fine on Chrome and Other Browsers but my text isn't centered vertically on IE.


As you can see in the top image (IE) the text isn't entered vertically, where in chrome it is.
My CSS Code
h1 {
font: 100% Coolvetica, Tahoma;
font-size: 2.2em;
text-align: left;
position: absolute;
padding-top: auto;
margin-top: auto;
margin-bottom: auto;
left: 4%;
width: 91.2%;
height: 0%;
color: #FFFFFF;
z-index: 4;
}
#title {
font: 100%;
font-size: 1em;
text-align: left;
position: absolute;
left: 0%;
background: #161616;
width: 100%;
min-height: 3.7em;
height: 3.5%;
padding-top: 0%;
margin-bottom: 5%;
margin-top: 0%;
color: #FFFFFF;
-moz-box-shadow: 0px 13px 59px #000000;
-webkit-box-shadow: 0px 13px 59px #000000;
box-shadow: 0px 13px 59px #000000;
z-index: 5;
}
My HTML Code
<div id="title">
<h1>
Hello Welcome to Our Online Shop!!!
</h1>
</div>
Hopefully that is enough information
Thanks Matt
