말줄임표
width:000px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap
줄바꿈
width:000px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap
줄바꿈
word-break:break-all :특수문자를 제외하고 강제 줄바꿈
word-wrap:break-word :특수문자를 포함하고 강제 줄바꿈
word-break:nowrap :width를 지정하였지만 개행이 되지 않기를 원할때.
word-break:keep-all :텍스트가 한글일 경우 띄워쓰기 기준으로 개행.
ex)
table { table-layout:fixed; } 주고
table { table-layout:fixed; } 주고
해당 td에 word-wrap:break-word;
tip1)
tip2)
tip1)
<table style="table-layout:fixed" width=500>
<col width=100><col width=400>
<tr>
<td>111111</td>
<td>222222</td>
</tr>
</table>
tip2)
table-layout:fixed면 세로길이도 고정되므로
본문내용 td에는 꼭!! height:auto;
본문내용 td에는 꼭!! height:auto;