Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- Docker Windows 설치
- react link
- Spring Entity
- react Quill
- react quill custom
- Spring Controller return
- spring security
- spring builder
- springbatch chunk
- react react-router-dom v6
- react jsx if
- spring
- javascript 함수
- Spring CORS
- Spring DTO
- react Page
- SpringBatch 스키마
- 텍스트가 많은 경우
- javascript 기초
- react forwardRef
- step 테이블
- 코드 중복제거
- JPA Update\
- Javascript
- react
- JPA Insert
- Spring JPA
- springbatch
- javascrpit 기초
- editor Quill
Archives
- Today
- Total
천천히 알아보는 코딩공부
[CSS] 글자 수 넘어가면/텍스트가 많은 경우 ... 처리 본문
글자 수가 넘어가면/ 텍스트가 많은경우 글자가 넘치게 된다
하지만 방지하기 위해 ... 처리를 해줄 수 있다
card-title css width 설정
.card-title {
width: 206px;
height: 43px;
}
... 처리 해주기 위한 css
/*글자가 많아지면 ... 처리*/
.card-title span div div {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
해당 항목이 ... 처리된다
Comments