본문 바로가기

IT 서비스 바라보기/Programming

테이블 크기 고정과 word-break:break-all


테이블 크기를 고정했을 경우 영어로 된 url 의 경우 <td> 의 width 값을 설정해줘도 url 의 길이만큼 테이블의 길이가 늘어 나는 경우가 있는데 이런 경우 아래와 같이 설정해주면 됩니다.

<table style="table-layout:fixed">

<tr>
<td width="200" nowrap> 내용1 </td>
<td style="word-break:break-all">url 이 있는 곳</td>