Open
Conversation
hyun907
approved these changes
Jul 27, 2025
Member
There was a problem hiding this comment.
유튜브 클론 코딩 거의 동일하게 만들어주셔서 깜짝 놀랐습니다! ㅎㅎ
그리고 캘린더 깨알 귀여운 파비콘이랑 현재 날짜 파란색으로 해두신 디테일 너무 좋습니다!
전체 구조와 흐름이 명확해서 보기도 좋습니다! DOM 조작도 효율적인 방식(createElement, appendChild)으로 잘 구성되어 있어요. 특히 .innerHTML +=이 아닌 DOM 메서드를 쓴 부분은 성능 면에서도 아주 좋은 선택이었습니다!
한 가지 개선 제안 드리자면, 월 선택 기능이 현재 연도에만 고정되어 있어서, 연도 선택이 가능하도록 확장하거나 상태 분리를 시도해도 좋을 것 같아요!
그리고 PR Point에 대해 답변 드리자면,
| 속성값 | 의미 | 쓸 때 |
|---|---|---|
| static | 기본값 (위치 지정 불가) | 특별한 위치 지정 필요 없을 때 |
| relative | 현재 위치 기준으로 이동 | 기준점을 만들거나 약간의 위치 조정이 필요할 때 |
| absolute | 가장 가까운 relative, absolute, fixed 조상 기준으로 절대 위치 | 오버레이, 배치 고정 요소 |
| fixed | 브라우저 창 기준으로 고정 | 스크롤해도 고정되어야 할 요소 (ex. header) |
| sticky | 스크롤 시엔 고정되다가 조건 충족 시 멈춤 | 스크롤 내릴 때 따라오는 메뉴 등 |
특히 relative는 absolute 요소의 기준점이 되는 경우가 많기 때문에, 앞으로 레이아웃 잡을 때 무의식적으로라도 자주 쓰일 거예요!
그리고 flex-wrap은 반응형 디자인에서 너비가 줄어들 때 자동으로 줄바꿈이 되도록 하고 싶을 때 사용합니다!
display: flex는 기본적으로 한 줄에 다 우겨넣으려 하니까, 줄넘김이 되게 하려면 꼭 flex-wrap: wrap을 추가해야 합니다!
쉽게 말해 줄 바꿈 허용이라 생각해주시면 됩니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
✨어떤 과제를 수행했나요?✨
2주차 유튜브 랜딩 페이지 클론
✨어려웠던점, 트러블슈팅✨
🤔 PR Point
코드와 직접적인 것은 아니지만, position 속성(특히 relative, absolute)를 언제 사용해야 하는지, 그리고 flex-wrap 속성에 대해 이해하기 어려워서 배우고 싶습니다!