const Container = styled.div`
width: 100%;
display: table;
.title {
display: table-cell;
width: 150px;
height: 59px;
}
.content-text {
height: 60px;
display: table-cell;
}
`;
컨텐이너 div
display : table;
오른쪽 영역 설정 div
display : table-cell;
width:150px;
왼쪽 영역 설정 div
display : table-cell;
넓이를 지정 안한 왼쪽 div는 남은 영역을 차지
const GnbContain = styled.div`
position: relative;
width: 100%;
height: 72px;
display: flex;
flex-direction: row;
.logo {
position: relative;
height: 100%;
width: 280px;
display: flex;
}
.header-middle-box {
height: 100%;
flex: 1;
}
`;