【水平垂直居中】微信小程序文字图片垂直居中解决方案

有时候总要在这里卡好久 气晕

  • 如果想让一个图片在一个view里面垂直居中,只需这一步
  • 在父容器里加display:flex;align-items: center;
  • 如果要实现水平居中的话,只需要在加一句justify-content: center;
.containera .artical .pic{
  display: flex;
  align-items: center;
  width: 250rpx;
  background-color:rgb(20, 197, 197) ; 
}

.containera .artical .pic image{
  width: 250rpx;
  height: 140rpx;
}

如图:让图片在蓝色那一栏实现垂直居中。
在这里插入图片描述

发布了99 篇原创文章 · 获赞 18 · 访问量 3704

猜你喜欢

转载自blog.csdn.net/alovelypeach/article/details/105478861