📜  bulma 在列中对齐图像垂直中心 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:00.334000             🧑  作者: Mango

代码示例2
// to vertically center an image with bulma
// add .content and .is-vcentered to a div tag and apply the following css

.content.is-vcentered {
  display: flex;
  flex-wrap: wrap;
  align-content: center; /* used this for multiple child */
  align-items: center; /* if an only child */
}