美文网首页
CSS将div水平垂直居中

CSS将div水平垂直居中

作者: 张先森Mr_zhang | 来源:发表于2020-07-13 14:39 被阅读0次

    1. flex布局

    // 父级div
    .box {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    

    2. 定位方法

    div1 {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
    }
    
    

    或者

    .div1 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    

    相关文章

      网友评论

          本文标题:CSS将div水平垂直居中

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