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 | 31 |
Tags
- javascript 기초
- react
- JPA Update\
- spring security
- springbatch chunk
- 텍스트가 많은 경우
- step 테이블
- JPA Insert
- react jsx if
- spring builder
- react link
- Spring JPA
- Javascript
- 코드 중복제거
- Spring CORS
- Spring DTO
- spring
- SpringBatch 스키마
- react react-router-dom v6
- react forwardRef
- javascrpit 기초
- react Quill
- react quill custom
- editor Quill
- javascript 함수
- react Page
- springbatch
- Spring Entity
- Spring Controller return
- Docker Windows 설치
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