08/13

김승우·2020년 8월 13일
0

TIL

목록 보기
8/68

TIL

1. HTML

1.1 Address tag

: https://www.w3schools.com/tags/tag_address.asp

1.2 a tag 클릭 방지

: href="javascript:void(0)"

2. CSS

2.1 background

2.2 Sass 조건, 반복문

2.3 모바일 가로 슬라이드

overflow-x: auto;
white-space: nowrap;

2.4 이미지 비율 맞추기

img{
	width:100%;
	height : 100%;
	object-fit: cover;
}

2.5 공백 처리

  • white-space : nowrap,.....

2.6 line-clamp


width: 70%;
height : 68px;
color: #808080;
font-weight: 600;
line-height : 34px;
-webkit-box-orient: vertical;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 2;

찾아보기

1. Lazyload

profile
사람들에게 좋은 경험을 선사하고 싶은 주니어 프론트엔드 개발자

0개의 댓글