omtr
omtr

Reputation: 879

Align image with css

I have a blank page just doctype and body.
How to center image vertically and middle within the body ? The image should be centered in every resolution of monitor.

Upvotes: 0

Views: 231

Answers (1)

Mārtiņš Briedis
Mārtiņš Briedis

Reputation: 17772

If fixed size image, CSS:

img#the-image{
 position:absolute;
 top:50%;
 left:50%;
 margin-left:-HALF_OF_THE_IMAGE_WIDTH;
 margin-top:-HALF_OF_THE_IMAGE_HEIGHT;
}

Upvotes: 2

Related Questions