让div水平垂直居中
方法一、用绝对定位让div水平垂直居中
div {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
background-color: red;
width: 100px;
height: 100px





