CSS块级元素水平居中

div元素水平居中

div {
    margin: 0 auto;
}

img元素水平居中

img元素为内联元素,要设置display属性

img {
    margin: 0 auto;
    display: block;
}