-
Notifications
You must be signed in to change notification settings - Fork 38
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 #9
The head ref may contain hidden characters: "part1--\uAE40\uAD11\uD638--sprint-1"
[김광호] Sprint1 #9
Conversation
body : nav를 div로 감싸고 widh를 부여해 여백 조절해보려 했으나 실패 및 header의 버튼과 p태그 사이 여백 확보
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.
첫 번째 미션인데도 불구하고 CSS 변수를 이용하는 것, flex
를 통한 레이아웃, background
속성 사용 등 잘 수행해주신 것 같습니다. 고생 많으셨습니다!
body{ | ||
padding: 0; | ||
margin: 0; | ||
font-family: Pretendard; |
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.
font-family
는 Pretendard를 사용할 수 없는 환경까지 처리하기 위해서
font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
혹은
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
와 같은 값으로 지정하시는 게 좋습니다.
참고 링크: https://github.com/orioncactus/pretendard?tab=readme-ov-file#font-family
flex-direction: column; | ||
align-items: center; | ||
--button-color: #3692ff; | ||
--backgrount-color: #cfe5ff; |
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.
background
인데 backgrount
라고 오타가 났네요. 이 부분 포함 아래 부분까지 다 수정이 필요할 듯 합니다.
@@ -0,0 +1,218 @@ | |||
body{ |
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.
보통 {
왼쪽에 띄어쓰기를 넣습니다.
ex) body {
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.
파일명은 style.css
같은 이름이 좋아보입니다. 이미 파일이기 때문에 file
이라는 단어는 필요하지 않을 것 같습니다.
<div class="header-size"> | ||
<nav> | ||
<a href="/"><img src="images/logo/panda-market-logo.png"></a> | ||
<a class="button" href="login.html">로그인</a> |
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.
로그인와 같은 형식으로 적으면 버튼에 링크가 걸립니다. 뿐만 아니라, button
태그를 사용했으므로 일부러 pointer: cursor;
같은 속성을 줄 필요가 없습니다. 이는 의미론적으로 HTML을 작성해야 된다는 점에서도 좋은 방법입니다.
<header> | ||
<div class="header-size"> | ||
<nav> | ||
<a href="/"><img src="images/logo/panda-market-logo.png"></a> |
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
처럼 닫는 태그가 필요 없는 태그는 끝 부분을 />
로 작성하셔야 합니다.
ex) <img src="images/logo/panda-market-logo.png" />
<a href="faq.html"><p>FAQ</p></a> | ||
</div> | ||
<div class="social-img"> | ||
<a href="https://www.facebook.com/?locale=ko_KR" target="_blank"><img src="images/social/facebook-logo.svg"></a> |
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.
이미지 태그에는 width
와 height
속성을 사용해 너비와 높이를 지정해 주는 게 좋습니다(css로 지정해도 해도 무방)
자세한 이유는 멘토링 시간에 말씀드리겠습니다.
<p>©codeit - 2024</p> | ||
</div> | ||
<div class="p2"> | ||
<a href="Privacy.html"><p>Privacy Policy</p></a> |
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.
a
태그 안에 p
태그가 없어도 될 것 같습니다.
</div> | ||
</div> | ||
<div class="page-end"> | ||
<div class="p1"> |
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.
파일명 시작이 소문자가 되는 게 좋을 것 같습니다.
요구사항
기본
1920px
이상이면 하늘색 배경색은 너비를 꽉 채우도록 채워지고, 내부 요소들의 위치는 고정되고, 여백만 커지도록 합니다.1920px
보다 작아질 때, “판다마켓” 로고의 왼쪽 여백200px
“로그인" 버튼의 오른쪽 여백200px
이 유지되고, 화면의 너비가 작아질수록 두 요소간 거리가 가까워지도록 설정합니다.cursor: pointer
로 설정합니다.심화
주요 변경사항
스크린샷
멘토에게