微信小程序 view中的image水平垂直居中

当 display: flex 配合 justify-content: center 使用时可以让view水平居中

而配合 align-items: center 用时可以实现垂直居中效果

 

.card-image-container{
  width: 40%;
  height: 90%;
  align-items: center;  /** 垂直居中*/
  display: flex;
  justify-content: center;   /** flex 属性, 水平居中**/
}
 
 

转载于:https://www.cnblogs.com/qcjdp/p/11362226.html

你可能感兴趣的:(微信小程序 view中的image水平垂直居中)