Skip to content
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 #17

Conversation

SeokChan-Lee
Copy link
Collaborator

@SeokChan-Lee SeokChan-Lee commented Oct 26, 2024

요구사항

기본

  • 랜딩 페이지의 url path는 루트(‘/’) 입니다.
  • title은 “판다마켓”으로 설정해 주세요.
  • 화면의 너비가 1920px 이상이면 하늘색 배경색은 너비를 꽉 채우도록 채워지고, 내부 요소들의 위치는 고정되고, 여백만 커지도록 해주세요.
  • 화면의 너비가 1920px 보다 작아질 때, “판다마켓” 로고의 왼쪽 여백 200px“로그인" 버튼의 오른쪽 여백 200px이 유지되고, 화면의 너비가 작아질수록 두 요소간 거리가 가까워지도록 해주세요.
  • 클릭으로 기능이 동작해야 하는 경우, 사용자가 클릭할 수 있는 요소임을 알 수 있도록 cursor: pointer를 설정해 주세요.
  • “판다마켓” 클릭 시 루트 페이지(‘/’)로 이동시켜주세요.
  • “구경하러 가기" 클릭 시 (“/items”)페이지로 이동시켜주세요.(빈 페이지)
  • HTML, CSS 파일을 Netlify로 배포해 주세요. (https://seokchan-mission.netlify.app/)
  • PC사이즈만 고려해 주어진 디자인을 구현합니다.
  • “로그인”버튼 클릭 시 로그인 페이지(‘/login’)로 이동합니다
  • “구경하러가기”버튼 클릭 시(’/items’)로 이동합니다.
  • 페이스북, 트위터, 유튜브, 인스타그램 아이콘은 클릭 시 각각의 홈페이지로 새로운 창이 열리면서 이동 합니다.
  • “Privacy Policy”, “FAQ”는 클릭 시 각각 아래 페이지로 이동합니다
- Privacy 페이지(‘/privacy’) 
- FAQ 페이지(‘/faq’)

심화

  • 사용자의 브라우저가 크고 작아짐에 따라 페이지의 요소간 간격, 요소의 크기, font-size 등 모든 크기와 관련된 값이 크고 작아지도록 설정해 보세요.(설정값은 자유입니다)

주요 변경사항

스크린샷

image

멘토에게

  • 스프린트 미션에 적혀있던 판다로고, 로그인 버튼 두개의 여백 관련해서 텍스트로는 이해하기 좀 어려워서 정확히 어떤 코드를 의도해서 미션을 주신건지 궁금합니다.

  • 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

@SeokChan-Lee SeokChan-Lee added the 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. label Oct 26, 2024
Copy link
Contributor

@withyj-codeit withyj-codeit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

미션 하느라 수고많으셨어요~👏🏻

스프린트 미션에 적혀있던 판다로고, 로그인 버튼 두개의 여백 관련해서 텍스트로는 이해하기 좀 어려워서 정확히 어떤 코드를 의도해서 미션을 주신건지 궁금합니다.

https://yunhyerim-pandamarket.netlify.app/
또는 https://sprint-mission-chanki.netlify.app/
결과가 되면 좋을 것 같아요.

관련해서 멘토링 시간에 좀 더 설명드릴게요

}

body {
background-color: #ffffff;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

body에 브라우저 기본 제공하는 margin이 있는 걸로 보여요
제거해주시는게 좋아요
image

<body>
<img src="none.jpeg">
</body>
</html>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

파일의 마지막에 빈 줄이 포함되는 것이 좋아요.
동작에 문제가 있는 건 아니지만 잠재적 문제를 없애기 위함 입니다. (참고)
사용하는 에디터에서 end of line 또는 eol이라는 키워드로 설정할 수 있어요

<header>
<div></div>
<a href="/">
<img src="panda_logo.png" class="panda-logo">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

img 태그에는 alt 특성을 넣어주는 습관을 들이면 좋아요. (참고)

display: grid ;
grid-template-columns: minmax(200px, 1fr) 153px minmax(0, 3fr) 128px minmax(200px, 1fr);
grid-template-areas:
". p . l ."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

p, l 같이 축약어 보단 단어를 보면 어떤 요소인지 바로 알 수 있는 이름이 좋아요.


<body>
<header>
<div></div>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

빈 div 박스를 사용하지 않고 header 또는 안의 요소들을 감싸는 박스에 padding, max-height, flex > justify-content > space-between 등의 옵션을 사용할 수도 있어요.

}

.login {
cursor: pointer;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

button 태그의 경우 일반적으로 cursor: pointer로 표시해주는 경우가 많아 전체 button 태그에 대해 설정하면 좋을 것 같아요.

</a>
<div></div>
<a href="./login">
<button class="login">로그인</button>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

현재 동작에 문제 있진 않지만, a 태그 아래 button 태그가 있는 건 좋지 않아요. (참고)
button, a 둘 다 상호작용하는 태그이기 때문에 두 태그의 이벤트가 충돌하면 한 가지가 무시될 수 있어요.
a 태그 자녀로는 상호작용이 없는 요소를 넣도록 신경써주세요.

}

.footer-grid {
display: grid ;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

x축으로만 요소들을 쭉 나열해도 괜찮은 경우 flex 사용이 간결할 수 있어요

". p . l ."
;
align-items: center;
padding: 9px ;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

padding 없이 height를 70px로 고정하고 center를 맞추면 디자인과 더 일치하는 결과물이 나올 거 같아요.

</p>
</div>
<div class="footer-sns">
<a href="https://www.facebook.com/" target="_blank">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_blank 설정할 때 noopener, noreferrer 설정도 고려하면 좋아요. (참고)

</head>

<body>
<header>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

다른 페이지로 이동하기 쉽도록 상단에 링크를 두는 요소는 nav태그가 더 좋을 것 같아요.
header태그는 콘텐츠의 제목이나 소개 또는 탐색하는 영역에 사용해요.

@withyj-codeit withyj-codeit merged commit eb2778e into codeit-bootcamp-frontend:Basic-이석찬 Oct 29, 2024
@SeokChan-Lee SeokChan-Lee self-assigned this Nov 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants