|
how to make text wrap in html tableDo you want your to wrap in a <TD> rather than to expand in width when the text is longer than percentage width of the table?Just add this below to your style sheet for that page:
how to make text wrap in html table
<style>
table{
table-layout: fixed;
}
td{
word-wrap:break-word;
white-space: normal;
}
</style>
|
|