Im trying to center a main div using margin:0px auto; but it wont work in firefox. It works in Chrome and IE any idea why this happend.
css:
#mami{
width:1200px;
margin:0px auto;
}
html:
<body>
<div id='mami'>
<h1>Center Me</h1>
</div>
</body>
Your div is centered fine in Firefox. http://jsfiddle.net/nTXeq/2/
If you want to center the text within the div, you’ll need to target that specifically: