table 에서 width 고정시키기는 어떻게
Posted: 2005 08 17 20:20 22
아래와 같은 경우 table에서 width고정시키려면 어떻게 해야하는게 좋을런지요?
<img src="http://img.empas.com/img/common/logo/logo_mail.gif" width="300" height="50" border="1">
<hr width="300">
<table width=300 border=1 cellspacing=0 cellpadding=0>
<tr>
<td> 매우긴 문자열(중간에 공백없슴)
</td>
</tr>
</table>
꼭 Table이 아니어도 됩니다만 내용부분에 긴 문자열이 들어간 경우 깨지곤 합니다. ( \n 으로 중간에 줄바꿈을 해주면 없어집니다.)
<img src="http://img.empas.com/img/common/logo/logo_mail.gif" width="300" height="50" border="1">
<hr width="300">
<table width=300 border=1 cellspacing=0 cellpadding=0>
<tr>
<td> 매우긴 문자열(중간에 공백없슴)
</td>
</tr>
</table>
꼭 Table이 아니어도 됩니다만 내용부분에 긴 문자열이 들어간 경우 깨지곤 합니다. ( \n 으로 중간에 줄바꿈을 해주면 없어집니다.)