标签: div居中
thumbnail
new

css设置div居中的方法有哪些

使用margin属性设置左右外边距为auto,上下外边距为0。 div { margin: 0 auto; } 使用flex布局,将父元素的display属性设置为flex,然后使用justify-content……