CSS

text-overflow

note-for-development 2024. 3. 7. 19:39

 

text-overflow는 white-space가 nowrap, overflow가 hidden인 상황에서 쓸 수 있다.

 

text-overflow: clip는 콘텐츠가 경계선을 넘으면 잘라서 보여준다.

 

text-overflow: ellipsis는 콘텐츠가 경계선을 넘으면 "..."으로 처리한다.

 

 

 

text-overflow - CSS: Cascading Style Sheets | MDN

The text-overflow CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('…'), or display a custom string.

developer.mozilla.org