본문 바로가기
프로그래밍/HTML, CSS

html, css table 에서 td 최소 사이즈 넣는 법

by 젤리씨 2020. 4. 9.
728x90


html, css   table 에서 td 최소 사이즈 넣는 법




<table>

<thead>

<tr>

<td nowrap width="100">1111</td>

<td nowrap width="200">2222</td>

</tr>

</thead>


<tbody>

<tr>

<td>내용1</td>

<td>내용2</td>

</tr>

</tbody>

</table>




td 태그안에 nowrap 을 붙여주면 됨.

728x90

댓글