말줄임표
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; } 주고
해당 td에 word-wrap:break-word;  

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;  

'css' 카테고리의 다른 글

form 관련  (0) 2012.02.16
CSS hack  (0) 2012.02.16
CSS reset  (0) 2012.02.16
이용약관  (0) 2012.02.16
배경 고정되고 내용만 스크롤  (0) 2012.02.16

+ Recent posts