-
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 #24
The head ref may contain hidden characters: "Basic-\uC624\uC131\uC900-sprint1"
[오성준] Sprint1 #24
Conversation
<main> | ||
<div class="container"> | ||
<div class="wrapper"> | ||
<div class="section02 hot-item"> |
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.
.section01 랑 .section02 가 다른 부모 요소와 계층 구조를 가지는데, 유사한 클래스명을 부여한게 독특합니다.
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-size: 40px; | ||
margin:12px 0px 24px; | ||
line-height: 56px; | ||
font-weight: 700; |
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 속성의 경우 아래 mdn 참고하셔서, 한 줄 안에 표현할 수 있습니다.
위 코드의 경우
font: 700 40px / 56px 로 표현할 수 있습니다.
https://developer.mozilla.org/en-US/docs/Web/CSS/font#formal_syntax
</header> | ||
|
||
<main> | ||
<div class="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.
.container 안에 .wrapper 가 있고 div 가 계속 중첩되어 있는 모습이 가독성이 좋지 않다고 생각합니다.
.conainer 태그 안에 요소를 배치한 의도가 있을거라 생각해, 모든 커밋에서 .container 검색해봤습니다. .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.
좋은 생각입니다 !wrapper
라는 단어를 container
로 변경하는 것도 고려해보세요 😊
</div> | ||
|
||
<div class="section01 image-bottom"> | ||
<div class="visual-text"> |
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.
위의 클래스명의 경우 "section02-요소명" 처럼, 블록-요소 느낌으로 네이밍했다는 인상을 받았습니다. 그래서 visual-text 라는 클래스명이 기존 흐름에 비해 특이하다는 생각해봤습니다.
|
||
<footer> | ||
<div class="footer-content"> | ||
<span>@codeit - 2024</span> |
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.
span 요소를 자주 쓰시네요. 부모인 div.footer-content 가 플렉스 박스여서
인라인이든 블록이든 flex-flow 따르게 되는데,
div 요소와 span 요소를 번갈아 쓰신 점 궁금합니다.
<div class="footer-content"> | ||
<span>@codeit - 2024</span> | ||
<div class="privacy-faq"> | ||
<a href="privacy.html"><span>Privacy Policy</span></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 태그 안에 바로 컨텐츠를 넣는 것이 아닌,
span 태그로 한번 더 감싼 의도가 궁금합니다.
수고 하셨습니다 ! 위클리 미션 하시느라 정말 수고 많으셨어요. |
commit 단위를 더욱 자주, 작게 해보시는건 어떠실까요?git을 다룰 때 commit은 "언제 해야 하는가"를 생각해보신 적 있으신가요?
그럼 커밋을 언제 해야 할까요?저는 다음과 같은 룰을 지키며 커밋을 하는걸 권장 드립니다:
관련하여 읽으시면 좋은 아티클을 추천드릴게요:tl;dr관련 변경 사항 커밋 자주 커밋 미완성 작업을 커밋하지 마십시오 커밋하기 전에 코드를 테스트하세요 또한 깃 커밋 메시지 컨벤션도 함께 읽어보세요:tl;dr:커밋 메시지 형식 type: Subject
body
footer 기본적으로 3가지 영역(제목, 본문, 꼬리말)으로 나누어졌다. 메시지 type은 아래와 같이 분류된다. 아래와 같이 소문자로 작성한다. feat : 새로운 기능 추가 |
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.
파일명에 띄어쓰기는 넣지 않는게 좋습니다 !
브라우저에서 불러올 때 url의 경우 띄어쓰기는 %20
과 같이 인코딩 되므로 웹 접근성이 저하될 수 있습니다. 또한 서버와 클라이언트 간의 인코딩 설정이 다를 경우 문자가 깨질 수 있습니다. 😊
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.
🐼
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.
🐼
<main> | ||
<div class="container"> | ||
<div class="wrapper"> | ||
<div class="section02 hot-item"> |
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 class="footer-content"> | ||
<span>@codeit - 2024</span> | ||
<div class="privacy-faq"> | ||
<a href="privacy.html"><span>Privacy Policy</span></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.
<span>
는 불필요한 태그로 보입니다:
<a href="privacy.html"><span>Privacy Policy</span></a> | |
<a href="privacy.html">Privacy Policy</a> |
</div> | ||
</main> | ||
|
||
<footer> |
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.
굳굳 ! 적절한 시맨틱 태그입니다 👍
:root { | ||
--header-btn-bgcolor : #3692ff; | ||
--header-btn-bgcolor--hover :#1251AA; | ||
--section01-bg-color : #cfe5ff; | ||
--section01-h1-color: #374151; | ||
--section02-span-color :#3692ff; | ||
--section02-p-color : #374151; | ||
--section02-title-color : #374151; | ||
--footer-bg-color : #111827; | ||
--footer-text01 : #9CA3AF; | ||
--footer-text02 : #E5E7EB; | ||
--white : #ffffff; | ||
} | ||
|
||
* { | ||
box-sizing:border-box; | ||
margin: 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.
해당 클래스는 global.css
혹은 color.css
라는 파일에서 따로 관리하셔도 될 것 같아요 😊
<header> | ||
<div class="gnb"> | ||
<div class="gnb-logo"> | ||
<img src="images/판다 얼굴.png" alt="판다얼굴로고"> |
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.
alt
는 사람이 읽기 편하게. 그리고 그림을 표현하도록 작성하시면 됩니다 😊
<img src="images/판다 얼굴.png" alt="판다얼굴로고"> | |
<img src="images/판다 얼굴.png" alt="판다 얼굴 로고"> |
훌륭합니다 ! 성준님 ! 재밌게 봤어요. |
요구사항
기본
심화
주요 변경사항
스크린샷
멘토에게