I have a problem. This should be pretty easy for anybody to solve, cause I'm not very good with CSS.
I'm trying to center items on my page. Simple enough. For IE, i can apply text-align: center; to the body to center it. However, this doesn't work for Firefox. So I put in margin-left: auto; and margin-right:auto;. This solves it for both firefox and IE. HOWEVER, this means I cannot use position absolute for my content, meaning i can't use a z-index to put some objects on top of others, so my content is hidden by other objects. Is there some simple code to align my content horizontally in the center and somehow use the z-index?


