-
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 #28
The head ref may contain hidden characters: "Basic-\uAC15\uD55C\uC194-sprint1"
[강한솔] Sprint1 #28
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.
안녕하세요 한솔님!
1주간 너무 고생하셨고, 과제도 열심히 해주신점 너무 고생하셨습니다👍
리뷰 확인 부탁드리며, 작은 수정 필요사항 몇 가지 있는데 참고하여 수정해주세요. 😄
전체적으로 리뷰가 필요한 부분은 여기서 추가로 알려드릴게요!
- 현재 이미지 파일들의 네이밍 컨벤션이 다소 아쉽습니다. (Group 19.png, Img_home_01.png등 통일이 안되어있네요🥲) 보통 파일명들은 케밥케이스 혹은 스네이크 케이스를 선호한답니다. 개인적으로 앞에 Img는 뒤의 확장자로 이미지 파일인지 알 수 있으므로 중복이라고 생각됩니다!
- global로 font-family와 palette를 적용을 해보시면 css코드를 짜실 때 조금 더 중복없이 작성이 가능할 것같아요! 한번 시도해보시는것은 어떨까요?
- 시맨틱 태그들을 적절히 넣어주신점 👍 입니다.
- 현재 id가 너무 specific하게 사용중인것 같습니다. HTML의 태그에서 하나가 여러개의 class를 가질 수 있고, 이를 css에서 적용을 할 수 있습니다. 예를들어, login button의 경우, class에 'small' 과 'button'을 갖게 하면 같은 모양의 a태그들을 또다시 사용할 수 있게 됩니다. 이부분을 한번 참고해보세요!!
이미지도 같이 commit해서 push했는데 코드만 push 해야 했을까요?
-> 이미지도 같이 push해주시는게 맞습니다! 만약 image가 없다면 어떻게 될지 고민해보시고, 그렇다면 현업에서는 모든이미지를 git에 올리는 것일까? 도 고민해보시면 더 좋을 것 같아요!!
이번 한주간 너무 고생하셨고 이번주도 화이팅입니다!!
@@ -0,0 +1,93 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> |
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.
</div> | ||
</footer> | ||
</body> | ||
</html> |
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.
현재 filechanged를 보시면 아래 사진처럼 하나의 오류가 나오게 됩니다.
이는 "End Of Line(EOL)" 이 없다는 경고입니다. 이를 없애려면 파일 내 코드 마지막 줄 뒤에 개행을 해주셔야 해요.
이 블로그를 보시면서 왜 마지막 줄에 개행이 없을 때 깃헙에서 오류를 보여주는지 확인해보시고, 사용하시는 코드에디터에서 설정을 해보시는 것을 추천드립니다! (물론 해결을 안해도 코드상에선 문제가 없지만, 코드리뷰할 때 불필요하게 이것에 한번 더 눈이 가는것을 줄일 수 있습니다!)
</div> | ||
</div> | ||
</section> | ||
<section class="white-container"> |
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.
클래스명을 가독성 있도록 잘 지어주셨어요👍
여기에 BEM방법론도 참고하셔서 추가해보는것도 더 좋을 것 같습니다!
<title>Document</title> | ||
</head> | ||
<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.
현재 안보이는 인덴트(띄어쓰기)가 존재하네요!
저는 이런 부분을 확인하기 위해 TrailingSpaces라는 익스텐션을 vsc에서 사용하고 있습니다. 또한 설정에서도 저장 시 자동으로 불필요한 띄어쓰기는 삭제 처리를 해주고 있답니다~
한솔님도 이런 부분은 설정을 셋팅해서 자동으로 삭제하게 한다면 신경쓰지 않고 코딩할 수 있을 것 같아요!
<section id="section2" class="white-container"> | ||
<img class="white-container-img" alt="돋보기 이미지" src="Img_home_02.png"/> | ||
<div id="explain2" class="explains"> | ||
<div class="small-text"> | ||
Search | ||
</div> | ||
<div class="text"> | ||
구매를 원하는 <br> | ||
상품을 검색하세요 | ||
</div> | ||
<div class="middle-text"> | ||
구매하고 싶은 물품은 검색해서<br> | ||
쉽게 찾아보세요 | ||
</div> | ||
</div> | ||
</section> |
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파일을 확인해보면section2
는 순서를 바꿔주고 있어요. css를 따로 적용하기 보단 html안에서 순서를 바꾸는게 더 직관적일 것 같습니다!
<section id="section2" class="white-container"> | |
<img class="white-container-img" alt="돋보기 이미지" src="Img_home_02.png"/> | |
<div id="explain2" class="explains"> | |
<div class="small-text"> | |
Search | |
</div> | |
<div class="text"> | |
구매를 원하는 <br> | |
상품을 검색하세요 | |
</div> | |
<div class="middle-text"> | |
구매하고 싶은 물품은 검색해서<br> | |
쉽게 찾아보세요 | |
</div> | |
</div> | |
</section> | |
<section class="white-container"> | |
<div id="explain2" class="explains"> | |
<div class="small-text"> | |
Search | |
</div> | |
<div class="text"> | |
구매를 원하는 <br> | |
상품을 검색하세요 | |
</div> | |
<div class="middle-text"> | |
구매하고 싶은 물품은 검색해서<br> | |
쉽게 찾아보세요 | |
</div> | |
</div> | |
<img class="white-container-img" alt="돋보기 이미지" src="Img_home_02.png"/> | |
</section> |
<div class="pandas"><img alt="메인 팬더 이미지" src="Img_home_top.png"/></div> | ||
<div id="main-show"> | ||
<div class="text">일상의 모든 물건을 <br>거래해 보세요</div> | ||
<a id="go-to" 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 id="go-to" class="btn" href="items.html">구경하러 가기</a> | |
<a id="go-to" class="botton" href="items.html">구경하러 가기</a> |
요구사항
기본
심화
주요 변경사항
스크린샷
멘토에게