• block
    • justify
  • inline
    • 공백 없음
  • inline-block
    • inline성질을 갖되, 높이와 너비를 지정해줄 수 있다
  • flex
    • 부모에게 부여하면 자식 간의 정렬 유연하게 가능
    • justify-content
      • flex-start
      • flex-end
      • center
      • space-between
      • space-around
    • align-items
      • stretch
      • flex-start
      • flex-end
      • center
  • flex-direction
    • 주축, 교차축 변경
    • row - default
    • row-reverse
    • column
    • column-reverse