rosendolu

负margin实现水平垂直居中

    width: 500px;
    height: 500px;
    position: absolute;
    left: 50%;
    top :50%;
    margin-left: -250px;  
    margin-top: -250px;

css3 translate 实现水平垂直居中

    width: 600px;
    height: 600px;
    position: absolute;
    left: 50%;
    top : 50%;
    transform: translate(-50%,-50%);

margin : auto实现水平垂直居中

    width: 650px;
    height: 650px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;

原文:小tip: margin:auto实现绝对定位元素的水平垂直居中

分类:

技术点:

相关文章:

  • 2021-08-31
  • 2021-11-30
  • 2021-12-11
  • 2021-08-01
  • 2021-11-30
  • 2021-11-30
猜你喜欢
  • 2022-12-23
  • 2021-09-28
  • 2021-11-30
  • 2021-12-17
  • 2021-06-17
  • 2021-11-30
  • 2021-11-30
相关资源
相似解决方案