말 줄임 처리하기

-·2023년 5월 1일

HTML/CSS

목록 보기
2/2

한 줄인 경우

h1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

여러 줄일 경우

h1 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  text-overflow: ellipsis;
  overflow: hidden;
}

0개의 댓글