I\'ve never been totally satisfied with my various solutions to centering content in a web page. the
tag has been deprecated back in the middle of th
Use relative positioning on the parent and give that same element the property:
margin: 0 auto;
The parent is now positioned and you should be able to set elements absolutely within it.
Example:
div#page{
position:relative;
width:400px;
margin:0 auto;
}
div#page #absoluteExample{
position:absolute;
top:18px;
left:100px;
}