-
Notifications
You must be signed in to change notification settings - Fork 46
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
[김태완] sprint4 #110
The head ref may contain hidden characters: "Basic-\uAE40\uD0DC\uC644-sprint4"
[김태완] sprint4 #110
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.
리뷰 확인해 주세요! (+conflict가 있네요?)
지난번 리뷰 내용중 이미지 태그 alt 를 반드시 작성하라고 하셨습니다! 참고 걸어주신 문서 잘 보았습니다. 실제 현업에서도 alt를 이미지를 글로 풀어 쓰는 수준으로 작성하는지 궁금합니다!
==> 저는 사실 저정도로 길게 작성하지는 않고, 주변에서도 저정도까지 길게 쓴 경우는 본 적이 없긴 합니다.. ㅎㅎ
a태그와 button 태그를 같이 사용하지 않는다는 말씀을 해주셨는데, html에서는 button 태그 사용시 link를 어떻게 걸어야 하는지 궁금합니다!
==> button의 click 이벤트 발생 시 특정 페이지로 이동하는 자바스크립트 로직을 작성해야 합니다.
코드 중 main-ad 섹션에서 이미지 태그를 사용했습니다. 이때, background-image의 contain을 줬을때처럼 브라우저 크기 조절할 때마다 이미지 크기를 변경할 수 있는 방법이 있을까요??
==> object-fit 속성을 사용해 보세요. 지금 작성하신 질문과 유사하게 구글링해보시면 아마 동일한 키워드가 나왔을 것도 같네요!
CSS/login.css
Outdated
*{ | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
} |
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 파일에 공통적으로 들어가는데, 이런 경우 common.css
/global.css
와 같이 파일 전체에 전반적으로 적용할 스타일을 따로 모아주는 식으로 관리하면 좋습니다.
CSS/index.css
Outdated
font-family: "Pretendard"; | ||
color: #3692FF; | ||
margin-bottom: 12px; | ||
} | ||
|
||
.bigtext{ | ||
font-family: "Pretendard"; | ||
font-size: 40px; | ||
font-weight: 700; | ||
line-height: 56px; | ||
letter-spacing: 2%; | ||
color: #374151; | ||
margin-bottom: 24px; | ||
} | ||
|
||
.smalltext{ | ||
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는 html 혹은 body 태그에서 한번에 적용할 수 있습니다.
(input, textarea, select 등에는 개별 적용하셔야 합니다)
CSS/index.css
Outdated
margin-left: 400px; | ||
margin-right: 400px; | ||
margin-top: 32px; |
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.
단축 속성으로 작성하면 깔끔하겠네요!
margin-left: 400px; | |
margin-right: 400px; | |
margin-top: 32px; | |
margin: 32px 400px 0; |
register.html
Outdated
<input class="input-tag email" type="email" placeholder="이메일을 입력해주세요"> | ||
<div class="error email-error"></div> | ||
<p class="input-name">닉네임</p> | ||
<input class="input-tag" type="username" placeholder="닉네임을 입력해주세요"> |
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.
input의 type 속성에는 username이라는 값이 존재하지 않습니다.
register.html
Outdated
<input class="input-tag" type="passwordConfirm" placeholder="비밀호를 다시 한 번 입력해주세요"> | ||
<img class="password-icon" src="./image/gnb/btn_visibility_on_24px.png" alt="비밀번호 안보이게"> | ||
</div> | ||
<div class="error passwordConfirm-error"></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.
존재하지 않는 naming convention이네요!
camelCase
와 kebab-case
가 섞인 모습입니다.
<div class="error passwordConfirm-error"></div> | |
<div class="error password-confirm-error"></div> |
login.html
Outdated
</div> | ||
<div class="error password-error"></div> | ||
<div class="login-button"> | ||
<a class="Btn" href="./items.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.
<a class="Btn" href="./items.html">로그인</a> | |
<a class="btn" href="./items.html">로그인</a> |
@lang92 멘토님! conflict는 해결했습니다. |
요구사항
기본
sprint2
로그인 페이지, 회원가입 페이지 공통
로그인 페이지
회원가입 페이지
sprint3
로그인, 회원가입 페이지 공통
sprint4
심화
sprint2
sprint3
주요 변경사항
멘토에게