웹 개발100 플렉스 박스란? 프론트 엔드에서 플렉스 박스란 위 이미지 처럼 웹 페이지를 블록 단위로 나눠서 마치 테트리스처럼 끼워 맞추는 방식이다. 아래 코드를 예시로 보자 DOCTYPE html> 플렉서블 박스 레이아웃 .container { background-color:#eee; border:1px solid #222; margin-bottom:20px; display: flex; } .opt1{ flex-direction: row; justify-content: flex-start; } .opt2{ justify-content: flex-end; } .opt3{ justify-content: center; } .opt4{ justify-content: space-between; } .opt5{ justify-content: .. 2021. 11. 8. 이전 1 ··· 9 10 11 12 다음