CSS Pozycja obrazu tła Pionowe centrum

/* Vertically center: */
.block {
    background: url("image.jpg") no-repeat left center;
}

/* Horizontaly center: */
.block {
    background: url("image.jpg") no-repeat center top;
}
Mysterious Macaque