不确定尺寸居中
.demo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) }
而另外一种使用margin的,这种是需要知道居中元素的宽高才能实现的
.demo { position: absolute; top: 50%; left: 50%; 100px; height: 100px; margin-left: -50px; margin-top: -50px; }