08/05~08/06~08/07

김승우·2020년 8월 6일
0

TIL

목록 보기
5/68

1. Promise return 방식

  • Promise를 return해서 계속 연결

Tip

1. 상품 별점 주기

2. 정규 표현식

3. 아코디언 메뉴

4. Vue Form Validation

https://kr.vuejs.org/v2/cookbook/form-validation.html

5. CSS 말줄임 표시

.goods__name {
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  line-height: 20px;
}

6. 이미지 비율 유지하면서 중앙 정렬

.goods__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  /* display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover; */
}
profile
사람들에게 좋은 경험을 선사하고 싶은 주니어 프론트엔드 개발자

0개의 댓글