-
Notifications
You must be signed in to change notification settings - Fork 79
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-\uC774\uC740\uBE48-sprint1"
[이은빈] sprint1 #9
Conversation
@@ -0,0 +1,288 @@ | |||
:root { | |||
/* color */ | |||
--gray-50: #f7f7f8; |
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 속성 사용한 부분이 훌륭합니다!
<header class="header inner"> | ||
<a class="logo" href="/"> | ||
<div class="logoImg"> | ||
<img src="img/판다 얼굴.svg" /> |
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.
image 의 alt 속성이 빠져있네요! alt 속성은 이미지가 렌더링되지 못할 때 나타날 문자열을 지정하기 위한 값으로 웹 접근성과 SEO 에 영향을 줄 수 있습니다. 웹 표준기관 WHATWG 의 대체 텍스트 제공 가이드라인 에도 다음과 같은 문구가 있습니다.
"Except where otherwise specified, the alt attribute must be specified and its value must not be empty"
달리 지정된 경우를 제외하고 alt 특성을 지정해야만 하며 해당 값은 비워 둘 수 없습니다.
alt 속성과 관련된 문서도 첨부드리니 참고해보세요 : )
https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/alt
네, 반응형 페이지구현을 위해서는 px과 같은 절대적인 고정형 단위가 아닌 rem 과 같은 상대적인 단위를 활용하는 것이 좋습니다. 또 한가지 팁을 드리자면, rem은 반응형 글꼴 크기 조정에 적합하지만 홀수를 rem으로 변환하거나 매우 큰 숫자로 작업해야 하는 경우 계산이 불편할 수 있습니다. 이 경우 rem을 사용하는 동안 친숙한 10진수에서 생각할 수 있어 62.5% 글꼴 크기 트릭을 사용하는 것이 도움이 될 수 있습니다. 구체적인 설명은 아래 링크를 참고해주세요!
공통적으로 반복되는 코드는 상위 컨테이너에서 일괄 적용 하는 것이 좋을 것 같습니다. 그래야 만약 차후 수정 할 일이 생기더라도 실수로 빠뜨리거나 요소마다 스타일이 다르게 적용되는 일이 없을거예요. |
첫 과제를 아주 깔끔하게 잘 해주셨습니다 : ) |
요구사항
기본
심화
주요 변경사항
스크린샷
멘토에게