Notice
Recent Posts
Recent Comments
Link
땀나는 애
css로 말줄임, 텍스트 줄이기 본문
.ellipsis {
text-overflow:ellipsis;
white-space:nowrap;
word-wrap:normal;
width:300px;
overflow:hidden;
}
.ellipsis-multi {
width:300px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* 라인수 */
-webkit-box-orient: vertical;
word-wrap:break-word;
line-height: 1.2em;
height: 3.6em; /* line-height 가 1.2em 이고 3라인을 자르기 때문에 height는 1.2em * 3 = 3.6em */
}
'쭈구리 코딩 > 내가 보고 쓰려고 모은 것' 카테고리의 다른 글
CSS - float 하위 DIV 높이를 부모 높이로 확장 (0) | 2019.05.23 |
---|---|
ie arrow 익스 셀렉트 박스 화살표, ie select box arrow (0) | 2019.05.23 |
에디터를 쓰지 않는 게시판 상세 페이지에서, 페이지 넣는 그대로 표출 되도록 하되 Pre 태그를 사용하지 않는 방법 (0) | 2019.05.23 |
input 입력 못하게 하기 - 달력에도 사용됨 (0) | 2019.05.23 |
placeholder color 변경 (0) | 2019.05.23 |
Comments