手记

前端 - 用css写垂直水平居中

在页面布局中,用css写元素相对父元素 垂直水平居中 非常常见,下面是总结出的三种方法,其中推荐指数 #1> #2 > #3

·父元素:

position: relative;

·子元素:

#1

position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);

#2

position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;

#3

position: absolute;
top: 50%;
left: 50%;
margin-top:-(高度/2)px;
margin-left:-(宽度/2)px;


4人推荐
随时随地看视频
慕课网APP