Is it possible to center a div div horizontally if this div is also absolute? The following works fine in Chrome / Safari / Firefox, but in IE8 it is in the far left:
.holder-answers {
position: absolute;
display: none;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: 200px;
width: 501px;
}
source
share