예) 아래의 내용으로 HTMl문서로 만들어서 테스트를 해보세요 ~♡
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>text-overflow</title>
</head>
"한글의 경우 <NOBR></NOBR> 또는 바로위 Element 에 nowrap 으로 묶어 주지 않으면 적용되지 않는다." 라는 설명을 많이 보게 됩니다.
그러나 <nobr> 테그는 W3C의 표준이 아닙니다. 이때는 아래와 같이 사용하셔야 합니다.
틀린 표현 : <nobr>there is no wrapping here</nobr>
맞는 표현 : <table><tr><td nowrap>there is no wrapping here</td></tr></table>
맞는 표현 : <span style="white-space: nowrap;">there is no wrapping here</span>