Center site in the center of the screen

How can I center the entire site in the center of the screen?

Both horizontally and vertically;

This is a site , see that it is centered horizontally, now vertically missing (any resolution)

Unable to change source to this link .

+1
source share
1 answer
#container {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -200px auto auto -200px;
}

jsFiddle .

+2
source

All Articles