一般用来上下所有居中,但是这时候auto的计算是全屏像素,从而得到满屏
position: fixed;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
margin: auto;
单纯高度的话,只要把left,right去掉即可
position: fixed;
top: 0px;
bottom: 0px;
margin: auto;
标签:right,bottom,百分百,top,高度,auto,position,0px,CSS
来源: https://www.cnblogs.com/nayek/p/11939048.html