[css] css 글씨 자르기
페이지 정보
작성자 제로 작성일 21-05-14 13:22 조회 34,785 댓글 0본문
.cutstr {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* line */
-webkit-box-orient: vertical;
word-wrap:break-word;
}
.cut2str {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* line */
-webkit-box-orient: vertical;
word-wrap:break-word;
}
.cut3str {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* line */
-webkit-box-orient: vertical;
word-wrap:break-word;
}
.cut4str {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 4; /* line */
-webkit-box-orient: vertical;
word-wrap:break-word;
}
댓글목록 0
등록된 댓글이 없습니다.
