Display
Q3. 두 줄 이상일 때 flex로 가운데 정렬 방법이 궁금해요!(display 충돌)
Question. 환영합니다. example sentence. alsothis is example text .text1{ display: flex; flex-direction: center; justify-content: center; align-items: center; } text1의 경우 justify-content, align-items를 사용하여 상하,좌우 중앙에 배치가 되는데 .text3{ /*2도 동일*/ max-width: 100vw; width: 80%; max-height: 100vh; height: 13%; background-color: rgba(244, 244, 255, 0.9); position: absolute; top: 50%; left: 50%; transform: tran..
Q1. css에서 사용한 요소가 무엇인지 모르겠어요
Question. .mypost{ display: flex; flex-direction: column; justify-content: center; align-items: center; } 중앙에 배치할 때 4개를 항상 묶음으로 사용하는 요소들인데 각자 어떤 역할을 가지고 있는지가 궁금해요! display, flex, flex-direction, justify-content, align-items가 어떤 역할인지 알려주세요.(__) Answer by 김종민 튜터님 css에서 궁금하신 속성값들은 공식 홈페이지나 구글링을 통해 공부하시면 쉽게 이해하실 수 있으세요! (저희 튜터들도 전부 외우고 있지는 않아용 ㅠㅠ) display 속성은 요소를 어떻게 보여줄지를 결정합니다! flex-direction는 htt..