Abelard0709

CSS 未知宽高 盒子 居中显示的几种方法

方法一:

父盒子给 position:relative;

盒子给 position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;

方法二:

父盒子给 position:relative;

盒子给 position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);

方法三:

父盒子给 display: flex;align-items: center;justify-content: center;

方法四:

父盒子给 display: table-cell;vertical-align: middle;text-align: center;

盒子给 display: inline-block;

 

posted on 2018-07-16 17:16 周亚文 阅读(...) 评论(...) 编辑 收藏

分类:

技术点:

相关文章:

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