CSS 생략 기호 만들기(한줄, 멀티)



.one{
  display:block;
  width:300px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.multi{
  display: -webkit-box;
  width: 240px;
  height: 47px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤