-
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
[하유리] Sprint3 #64
The head ref may contain hidden characters: "Basic-\uD558\uC720\uB9AC-sprint2"
[하유리] Sprint3 #64
Conversation
image/shopping-btn.png
Outdated
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.
이 png 는 button tag 로 직접 구현해야할 것 같아요!
버튼에는 사용자의 인터랙션에 따라 다른 스타일을 적용하게 될 수 있으므로 태그를 사용하여 버튼을 구현하는 것이 좋습니다. 또한, 이렇게 직접 구현하게 된다면 CSS를 사용하여 hover나 click 등의 상태에 따라 버튼의 스타일을 쉽고 유연하게 변경할 수 있습니다.
image/login-btn.png
Outdated
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를 사용하여 hover나 click 등의 상태에 따라 버튼의 스타일을 쉽게 변경할 수 있습니다.
index.html
Outdated
<meta property="og:image" content="image/pandamarket_preview.jpg"> | ||
<meta property="og:description" content="일상의 모든 물건을 거래해보세요"> | ||
<!-- 트위터 --> | ||
<meta name="twitter:card" content="판다 마켓 미리보기" /> |
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.
<meta name="twitter:card" content="트위터 카드 타입(요약정보, 사진, 비디오)" />
처럼, content 에는 카드 타입을 명시해주어야 합니다.
관련하여 참고할 수 있는 블로그 소개합니다!
https://velog.io/@byeol4001/Meta-Tag-OG%EC%98%A4%ED%94%88%EA%B7%B8%EB%9E%98%ED%94%84-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0
index.html
Outdated
<meta name="twitter:description" content="일상의 모든 물건을 거래해보세요" /> | ||
<meta name="twitter:image" content="image/pandamarket_preview.jpg" /> | ||
<!-- 카카오톡 --> | ||
<meta property="og:url" content="pandamarket3.netlify.app"> |
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.
현재 카카오톡이나 페이스북의 meta 태그가 중복되고 있습니다. 일반적으로 카카오톡이나 페이스북 같은 소셜 미디어 플랫폼은 웹 페이지의 메타 정보를 자동으로 가져와서 미리보기를 생성합니다. (트위터의 경우 따로 적어주어야 하는 것이 맞습니다.) 따라서 이 경우에는 별도로 카카오톡이나 페이스북을 위한 메타 태그를 지정하지 않아도 될 것 같습니다.
요구사항
sprint mission 3
기본
공통
랜딩 페이지
로그인, 회원가입 페이지 공통
심화
주요 변경사항
Netlify 배포
pandamarket3.netlify.app
스크린샷(tablet, mobile)
1. 랜딩페이지
2. 로그인 페이지
3. 회원가입 페이지
4. OGTag(페이스북, 카카오톡)
멘토에게
<div>
, 세번째<div>
가 마치 float을 적용한 것처럼 상단의 요소 위에 덮어 써지며,<div>
사이에 여백이 늘어나는 문제가 있습니다. 브라우저 크기를 조절할 때<main>
영역의 요소들이 여백을 포함해 일정 비율로 확대/축소 되도록 고정하고 싶은데, 아무리 해도 원하는 대로 구현이 안 되네요. 조언 부탁 드립니다.