Html
    Css
    Js

    
                        
.div1 {
	position:relative;
	height:100px;
	width:100px;
	border:1px solid #ccc;
}
.div2 {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
	height:50px;
	width:50px;
	background:aqua;
	border:1px solid #ccc;
}

                        
↑上面代码改变,会自动显示代码结果 jQuery调用版本:1.11.3
 立即下载

margin居中

使用绝对定位,margin居中

0