I have a placeholder (under construction) site which holds only one image with the logo. I horizontically aligned with margin: 0 auto. But how do I know additionally horizontal align the image. Or with one sentence: How do I fully centrate an image.
Regards, Bodo
EDIT: For 1:2 (height to width) images use:
#wrapper img
{
position: absolute;
top: 50%;
left: 50%;
width: 799px;
height: 404px;
margin: -202px -399px 0;
border: 1px solid black;
}
like in the linked thread :)
thank you for the help