2017년 5월 21일 일요일

긴 문자열 자르기 (span 사용)

CSS로 긴 문자열 자르기

폭을 정하지 않고 줄바꿈 처리하지 않고 사용시 : 한라인만 나온다?



예제 소스


<td><span style="overflow:hidden; text-overflow:ellipsis; white-space:nowrap;">긴 문자열 자르기</span></td>

<td width="10" nowrap><span style="width:10; overflow:hidden; text-overflow:ellipsis;">긴 문자열 자르기</span></td>

<span style="width:100; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;">긴 문자열 자르기</span>

<span style="width:100;overflow:hidden;word-break:break-all;">문자열, 이미지 자르기</span>