Published 29/04/2016
Last Updated 20/11/2024

ref http://stackoverflow.com/questions/18516317/vertically-align-an-image-inside-a-div-with-responsive-height

Yêu cầu:

Giải pháp đơn giản nhất là sử dụng flex của CSS 3. Các giải pháp khác đều mang tính work-around và không ổn định

.img-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex; /* add */
    justify-content: center; /* add to align horizontal */
    align-items: center; /* add to align vertical */
}

Các giải pháp khác và hạn chế: