내용이 넘치는 Flexbox 스크롤 위의 레이아웃을 만들기 위해 사용하는 코드는 다음과 같습니다. .header { height: 50px; } .body { position: absolute; top: 50px; right: 0; bottom: 0; left: 0; display: flex; } .sidebar { width: 140px; } .main { flex: 1; display: flex; flex-direction: column; } .content { flex: 1; display: flex; } .column { padding: 20px; border-right: 1px solid #999; } Main header Sidebar Page Header. Content columns are..