테이블 태그 자동 줄바꿈

2016. 5. 24. 10:31Programming/CSS

반응형

<style>

table {

tablelayout:fixed

}

td {

style="word-break:break-all;"

}

</style>


<table class="tab">

<tr>

<td >Looooooooooooooooooooooong</td>

</tr>

</table>

반응형