CSS Latar Belakang Posisi Gambar Vertikal Pusat

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

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