cnsdhzzl

1.页面

<div class="container">
    <div class="row clearfix">
        <div class="col-md-12 col-centered">
                </div>
        </div>
</div>

 

2.css

.container {
    display: table;
    height: 100%;
}

.row {
    display: table-cell;
    vertical-align: middle;
}

.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none;
    text-align: left;
    margin-right: -4px;
}

 

分类:

技术点:

相关文章:

  • 2022-02-04
  • 2022-02-03
  • 2021-12-29
  • 2021-12-24
  • 2022-01-14
  • 2021-12-18
  • 2022-02-10
猜你喜欢
  • 2021-05-04
  • 2022-02-01
  • 2021-12-11
  • 2021-12-04
  • 2022-01-23
  • 2022-01-27
相关资源
相似解决方案