css를 이용한 말줄임 처리하기

HTML & CSS

  • ellipsis

2023-05-19 14:37

문장이 길어질 경우 '...' 표시가 되도록 설정하는 방법

1줄 말줄임표

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

여러 줄 말줄임표

overflow: hidden;
  display: -webkit-box;
      -webkit-line-clamp: 2; /* 줄이고 싶은 줄의 갯수 */
      -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: break-word;
css