-
Notifications
You must be signed in to change notification settings - Fork 35
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
[정인재] sprint3 #82
The head ref may contain hidden characters: "Basic-\uC815\uC778\uC7AC-sprint3"
[정인재] sprint3 #82
Conversation
This reverts commit 42d169d.
<div class="frame-text"> | ||
일상의 모든 물건을 </br> | ||
거래해보세요 | ||
일상의 모든 물건을<br class="line mobile-line" /> 거래해보세요 | ||
</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.
이 부분은 div
태그보다 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.
@@ -37,45 +36,43 @@ | |||
|
|||
<article class="element"> | |||
|
|||
<img src="/img/Img_home_01.png"> | |||
<img class="element-img" src="/img/Img_home_01.png"> |
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.
이미지에 vw
단위를 주셨네요 ! vw
는 실무에서도 반응형 작업을 할때 많이 사용을 했습니다 !
article
의 전체 사이즈가 이미지의 vw
에 의존하고 section
태그의 display: flex, align-items: center
에 의해 컨텐츠가 가운대로 모였습니다.
저는 개인적인 경험으로는 section
태그에 상하좌우 패딩을 주어 모서리와 컨텐츠간의 일정 부분 간격을 보장하는것이 좋다고 생각합니다. section
태그가 일종의 container
역할을 하고 있는데, 대부분의 디자인에서는 container
가 패딩을 가지고 있습니다.
위는 section
에 임의의 패딩을 준 모습입니다. 개인적인 경험으로 이런 모습이 조금 더 유지보수하기 용이한 레이아웃이었습니다.
쉽게 등록하세요 | ||
</p> | ||
</div> | ||
</article> | ||
</section> | ||
|
||
</div> | ||
|
||
<div class="frame"> |
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.
body
에 태그 자체에 margin
스타일을 부여하셨네요. 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.
@@ -9,13 +9,13 @@ | |||
</head> | |||
|
|||
<body class="loginPage"> |
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.
input, label
속성등에 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.
디자인 시안상 모바일 사이즈는 400px
을 넘기지 않아야하기때문에 최대 400px
까지는 커져야합니다.
input
태그에 모바일 사이즈 기준으로 width를 343px을 주셨고, 부모태그의 너비가 컨텐츠의 넓이에 의해 결정되므로 form
태그의 너비가 343px 쯤으로 머무르는걸로 판단됩니다.
form
태그의 max-width
를 400px로 하고 input
태그의 너비를 width: 100%
로 주는 접근을 하는것이 좀 더 나은 마크업이라고 생각합니다.
스프린트 미션 3 수고하셨습니다 !! |
요구사항
공통
PC: 1200px 이상
Tablet: 768px 이상 ~ 1199px 이하
Mobile: 375px 이상 ~ 767px 이하
375px 미만 사이즈의 디자인은 고려하지 않습니다
랜딩 페이지
로그인, 회원가입 페이지 공통
체크리스트 [심화]
주요 변경사항
스크린샷
멘토에게