HTML CSS center align help?

Brett H

New member
<style type="text/css">
body{
padding:5em 0 0 0;
}
h1{
position:fixed;
_position:absolute;
z-index:100;
top:0;
_top:expression(eval(document.body.scrollTop));
padding:0;
background:white;
left:auto;
right:auto;
}
</style>

I don't understand why this code isn't making my <h1>...</h1> center itself automatically. Everything just stays to the right. What did I do wrong?
 
Back
Top