CSS Background Image Posición Centro vertical
/* Vertically center: */
.block {
background: url("image.jpg") no-repeat left center;
}
/* Horizontaly center: */
.block {
background: url("image.jpg") no-repeat center top;
}
Mysterious Macaque