水平居中:给div设置一个宽度,然后添加margin:0auto;属性。div{width:200px;margin:0auto;}绝对定位的div居中:div{position:absolute;width:300px;height:300px;margin:auto;top:0;left:0;bottom:0;right:0;background-color:pink;/*方便看效果*/}水平垂直居中一:水平垂直居中二:水平垂直居中三:
水平居中:给div设置一个宽度,然后添加margin:0 auto;属性。
div{ width:200px; margin:0 auto; }
绝对定位的div居中:
div { position: absolute; width: 300px; height: 300px; margin: auto; top: 0; left: 0; bottom: 0; right: 0; background-color: pink;/* 方便看效果 */ }
水平垂直居中一:
水平垂直居中二:
水平垂直居中三: