Notice
Recent Posts
Recent Comments
Link
목록분류 전체보기 (51)
땀나는 애
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 */ }
쭈구리 코딩/내가 보고 쓰려고 모은 것
2019. 5. 23. 14:42
input 입력 못하게 하기 - 달력에도 사용됨
예시 기존의 input과 다른 부분 readonly="readonly"
쭈구리 코딩/내가 보고 쓰려고 모은 것
2019. 5. 23. 11:19