티스토리 뷰
반응형
한줄일 경우 처리 하단 코드로 처리
.text{
white-space:nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
두줄 이상(문장)으로 처리하려면 하단 코드로 처리
* IE는 지원하지 않으니 height값을 넣어주어야 합니다.
.text{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp:2
/* IE는 height값 추가*/
height:80px
}
반응형
'Front-End > CSS' 카테고리의 다른 글
[CSS] nth-child 정리 (0) | 2021.02.05 |
---|---|
[CSS] 아이프레임(iframe) 반응형 만들기 (0) | 2020.05.21 |
댓글