본문 바로가기

STUDY/HTML&CSS

CSS | 텍스트 말줄임 ... 처리

text-overflow: ellipsis로 처리할 수 있으나 몇 가지 조건이 있음

1. overflow: hiddenwhite-space: nowrap이 함께 적용되어야 함

2. width에는 픽셀 단위로 값을 설정하거나, %단위를 사용하고 싶다면 max-width를 함께 설정해야 함

 

예시

.name-cell {
    width: 6%;
    max-width: 85px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

처리된 모습