垂直居中

2021-10-04  本文已影响0人  9月的甜橙子

文字的垂直居中

p {
  display: table-cell;
  vertical-align: middle;
  height:100px;
  border: 1px dashed gray;
}

元素的垂直居中

.parent{
  position: relative;
  height:100px;
  width:100px;
  background:red;
}
.child{
  position: absolute;
  top: 50%;
  left: 50%;
  height:50px;
  width:50px;
  margin-top: -25px;
  margin-left: -25px;
  background:blue;
}
上一篇 下一篇

猜你喜欢

热点阅读