-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[유주민] sprint1 #32
The head ref may contain hidden characters: "part1-\uC720\uC8FC\uBBFC-sprint1"
[유주민] sprint1 #32
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
전반적으로 잘 하신 것 같습니다 👍
시멘틱태그들도 적극적으로 활용하셨고, class name들 작성도 잘 하셨습니다.
LGTM
질문 답변
화면의 너비를 조절했을 때 본문에 있는 요소들이 아래로 내려가지 않고 그대로 잘리는데 왜 이런 현상이 나타나는지 잘 모르겠어요,,
요소들의 컨테이너가 width가 고정값이라서 그렇습니다.
%나 max-width, min-width등을 사용해보시는걸 추천드립니다.
flex를 사용한 배치가 익숙하지 않아서 마진과 패딩을 큰 값을 사용해서 간격을 최대한 맞추는 방향으로 코드를 작성했는데 그래도 피그마 시안이랑 비교했을 때 요소 위치 차이가 눈에 잘 보여서 어떻게 맞추면 좋을까요 ..??
기본적으로는 익숙하지 않아도 그냥 flex로 계속 이것저것 시도해보시면서 꾸준히 해보시는걸 추천드립니다.
flex는 고정값이 아닌 비율로 동작하기 때문에 마진과 패딩으로 똑같이 구현하려면 고정값이아닌 비율 %로써 작동하도록 만드셔야 될 것 같습니다.
하지만 저는 어떻게든 넓은 레이아웃을 잡으실 때는 flex를 좀더 활용해보시는 걸 추천드릴게요.
<header class="home-gnb"> | ||
<a href="index.html" class="home-logo"> | ||
<img src="images/home-banner/logo.svg" alt="판다마켓"> | ||
</a> | ||
<a href="signin.html" class="login-btn">로그인</a> | ||
</header> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gnb의 경우 다른 페이지에서도 사용될 가능성이 높으니 공용으로 사용될 수 있게 home
같은 접두사는 제외시키고 만드시면 좋을 것 같습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
다른 class name들 처럼 logo와 login-btn이 gnb-logo 이런식으로 위계가 들어가면 css파일에서 알아보기 더 좋겠네요.
아니면 한개만 존재할 것 같으니 id를 사용하셔도 좋습니다.
<div class="home-main-container"> | ||
<img src="images/home-container/item.svg" alt="Hot item" width="50%"> | ||
<div class="home-main-container-description"> | ||
<span>Hot item</span> | ||
<h2> | ||
인기 상품을<br> | ||
확인해 보세요 | ||
</h2> | ||
<p> | ||
가장 HOT한 중고거래 물품을<br> | ||
판다 마켓에서 확인해 보세요 | ||
</p> | ||
</div> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
같은 모양의 컨텐츠들을 같은 클래스로 묶어서 처리하신 점 잘하셨습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
img에 alt를 빼먹지 않으신 것도 👍
</div> | ||
</div> | ||
<div class="home-main-container"> | ||
<div class="home-main-container-description search"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
텍스트가 오른쪽정렬되는 부분을 search로 구분하여 사용하신걸로 보입니다.
밑에 컨텐츠가 하나 더 추가될 경우 재활용하기 좋도록 search보다는 좀더 범용적인 이름으로 오른쪽 정렬을 나타내는 명칭이 사용되면 좋을 것 같습니다.
요구사항
기본
심화
주요 변경사항
Netlify 주소
https://pandamarket06-1.netlify.app/
스크린샷
멘토에게