[CSS] Change the off-axis Alignment of a Flexed Container with `align-items`

We changed the axis layout with 'justify-content', and the "off axis" layout is controlled by 'align-items'. The most common values are flex-startflex-end, or center.

body {
  display: flex;
  flex-direction: row;
}

.container {
  background-color: #ebb871;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  align-items: flex-start;
  align-items: flex-end;
  align-items: center
}
<body>
    <div class="container">
        <div class="box1 red"></div>
        <div class="box2 green"></div>
        <div class="box3 blue"></div>
    </div>
</body>

猜你喜欢

转载自www.cnblogs.com/Answer1215/p/11527325.html