xxxgitone / learningProcess

:boom: 本仓库用于记录我的学习历程和学习笔记
33 stars 18 forks source link

我的学习日志(十一) #13

Open xxxgitone opened 7 years ago

xxxgitone commented 7 years ago

今天又发现一种新的居中方式,给父元素加相对定位,待居中元素,使用绝对定位

<div class="box">
  <div></div>
</div>

css样式

.box {
  width: 200px;
  height: 200px;
  border: 1px solid red;
  position: relative;
}

.box div {
  width: 50px;
  height: 50px;
  background: red;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

垂直居中