美文网首页
css 水平垂直居中

css 水平垂直居中

作者: wlianfu | 来源:发表于2017-11-07 11:39 被阅读3次

方法1:

父类
.box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;        
}

方法2: flex布局

父类
.box {
    display: flex;
    align-items: center;
    justify-content: center;
}

方法3: 绝对定位

父类:
.box {
  position: relative;
}
子类:
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

相关文章

网友评论

      本文标题:css 水平垂直居中

      本文链接:https://www.haomeiwen.com/subject/rvgdmxtx.html