flex-direction】 

  The flex-direction CSS property specifies how flex items are placed in the flex container defining the main axis and the direction

/* The direction text is laid out in a line */
flex-direction: row;

/* Like <row>, but reversed */
flex-direction: row-reverse;

/* The direction in which lines of text are stacked */
flex-direction: column;

/* Like <column>, but reversed */
flex-direction: column-reverse;

  flex-direction

参考:https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction

相关文章:

  • 2021-09-13
  • 2021-05-13
  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2021-10-08
  • 2021-11-15
  • 2021-12-12
猜你喜欢
  • 2022-12-23
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2022-12-23
相关资源
相似解决方案