其他分享
首页 > 其他分享> > CSS让高度百分百的方案

CSS让高度百分百的方案

作者:互联网

一般用来上下所有居中,但是这时候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