관리 메뉴

거니의 velog

CSS Flex 속성 본문

etc 이슈

CSS Flex 속성

Unlimited00 2024. 3. 18. 20:16

https://studiomeal.com/archives/197

이번에야말로 CSS Flex를 익혀보자

studiomeal.com

#pond {
  display: flex;
  justify-content: flex-end;
}

#pond {
  display: flex;
  justify-content: center;
}

#pond {
  display: flex;
  justify-content: space-around;
}

#pond {
  display: flex;
  justify-content: space-between;
}

#pond {
  display: flex;
  align-items: flex-end;
}

#pond {
  display: flex;
  justify-content: center;
  align-items: center;
}

#pond {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

#pond {
  display: flex;
  flex-direction: row-reverse;
}

#pond {
  display: flex;
  flex-direction: column;
}

#pond {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

#pond {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#pond {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}

#pond {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
}

#pond {
  display: flex;
}

.yellow {
  order: 1;
}

#pond {
  display: flex;
}

.red {
  order: -3;
}

#pond {
  display: flex;
  align-items: flex-start;
}

.yellow {
  align-self: flex-end;
}

#pond {
  display: flex;
  align-items: flex-start;
}

.yellow {
  order: 1;
  align-self: flex-end;
}

#pond {
  display: flex;
  flex-wrap: wrap;
}

#pond {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

#pond {
  display: flex;
  flex-flow: column wrap;
}

#pond {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

#pond {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
}

#pond {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  align-content: center;
}

#pond {
  display: flex;
  flex-flow: column-reverse wrap-reverse;
  align-content: space-between;
  justify-content: center;
}
#pond {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap-reverse;
  align-content: space-between;
  justify-content: center;
}

 

'etc 이슈' 카테고리의 다른 글

CSS 스크롤바 숨기기  (0) 2024.03.21
깃 배쉬 사용법  (0) 2024.03.18
(1) 네트워크 이론 1  (0) 2023.10.30
[MySQL5.7] 한글깨짐 character set UTF8 설정하기  (0) 2023.08.01