728x90
반응형
display: flex;
로 정렬하고 싶은데, 코딩을 해보면서 꽤 헤맸던 부분이라 정리할 겸 포스팅.
## PH
- 2024-07-30
<div class="sub">
이 추가된 걸 볼 수 있는데... CSS 는 다음과 같음.
```[.lang-css]
header {
height: 70px;
position: sticky;
z-index: 100;
top: 0;
background-color: white;
border-width: 0 0 1px;
border-color: var(--border-color);
}
header, main, footer {
max-width: 1920px; /* max-width 를 주고 margin:0 auto 로 중앙 정렬. */
margin: 0 auto;
display: flex; /* Sub elements 들에 대한 정렬을 위해 flex 를 씀. */
align-items: center;
}
* {
box-sizing: border-box;
}
.sub {
flex-grow: 1; /* 이게 핵심인데, 이 값은 default 0 이기 때문에 div.sub 의 width 가 fit-content 처럼 되어버려서 전체 width 를 차지하지 못함. 이 값을 1로 줘서 전체 width 를 채우도록 강요. */
margin: 0 12.5rem;
}
header .sub-header {
display: flex; /* 위의 flex-grow 설정으로 안쪽 elements 들의 정렬이 깔끔하게 이어질 수 있음. */
justify-content: space-between;
align-items: center;
}
```/
## RRA
- 코드잇 과제 - 판다마켓 by kipid, 2024-07-30
728x90
반응형
'[IT/Programming] > HTML related' 카테고리의 다른 글
week2 위클리 페이퍼 (브라우저가 어떻게 동작하는지 설명) (0) | 2024.08.06 |
---|---|
Pattern Replace 를 이용한 http, https 링크 (그림, 동영상, 유튜브, 인스타그램, 틱톡, Soundcloud, 카카오TV, 네이버TV 등) 처리 | URI (Unique Resource Identifier) Rendering (11) | 2024.08.04 |
Learning Node.js (0) | 2024.08.04 |
HTML docuK format ver. 2.3 (2023-10-25) (4) | 2024.07.27 |
Vertical center align by CSS in HTML (0) | 2024.05.05 |
HTML CSS composes, and pseudo-element :after, :active:after, and transition (0) | 2024.04.23 |
순수한 완전 쉬운 편집 (SEE: Super Easy Edit) 문서K (Markdown: 마크다운): 사용 설명서. (0) | 2024.04.23 |