Вертикально центрировать и выравнивать по левому краю столбец гибких элементов

Требования

  • flexbox
  • вертикально средний
  • горизонтально слева
  • дочерние элементы с вертикальной укладкой
  • количество дочерних элементов может быть одним или несколькими
  • используйте старый синтаксис, чтобы Android 4.2 понимал

Звучит сложно описать. Розовый ящик в демо - это вид, который я хочу. Зеленая коробка уже хороша, только я не знаю, как это сделать с несколькими дочерними элементами.

Я думаю, что решение может быть комбинацией следующего, но я не могу этого сделать.

align-items: center;
flex-direction: column;

body {
  margin: 1em .5em;
}
article {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

section {
  height: 18em;
  background: #ccc;
  margin: 0 .5em;
  position: relative;
  display: flex;
  align-items: center;
}
section:after {
  font-size: smaller;
  color: blue;
  position: absolute;
  bottom: 0;
}
section.big {
  width: 20%;
  height: 5em;
}
section.small {
  width: 10%;
  flex: 1;
}
section div {
  outline: 1px dotted green;
}
section.want {
  background-color: pink;
}
section.want:after {
  content: "1) want to do like this: vertically middle, horizontally left, while section will contain one or several child elements";
}
section.only1 {
  background-color: lightgreen;
}
section.only1:after {
  content: "2) all good except one point:the number of child element must be one.";
}
section.row:after {
  content: "3) by default flex-diraction is row";
}
section.col {
  flex-direction: column;
}
section.col:after {
  content: "4) this can vertically stack multiple stacks, but they no longer horizontally left-align";
}
section.col.justify {
  justify-content: center;
  align-items: flex-start;
  background-color: lightblue;
}
section.col.justify:after {
  content: "6) this is good!  Solved.";
}
section.colmar {
  flex-direction: column;
}
section.colmar:after {
  content: "5) this can vertically stack multiple stacks, and left-align divs, but divs are not vertically center";
}
section.colmar div {
  margin-right: auto;
}
<article>
  <section class="small want">
    line1
    <br/>line2
  </section>
  <section class="small only1">
    <div>only 1 div</div>
  </section>
  <section class="small row">
    <div>div1</div>
    <div>div2</div>
  </section>
  <section class="small col">
    <div>div1</div>
    <div>div2</div>
  </section>
  <section class="small colmar">
    <div>div1</div>
    <div>div2</div>
  </section>
  <section class="small col justify">
    <div>div1</div>
    <div>div2</div>
  </section>
</article>

Ответ 1

justify-content выравнивает элементы flex вдоль основной оси.

align-items выравнивает элементы гибкости вдоль поперечной оси, которая всегда перпендикулярна основной оси.

В зависимости от flex-direction основная ось может быть горизонтальной или вертикальной.

Так как flex-direction:column означает, что основная ось вертикальна, вам нужно использовать justify-content not align-items, чтобы центрировать элементы flex.

Вот пример:

#container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 200px;
  background-color: lightpink;
}
<div id="container">
  <div class="box">div 1</div>
  <div class="box">div 2</div>
  <div class="box">div 3</div>
  <div class="box">div 4</div>
  <div class="box">div 5</div>
</div>