table td或th如何格局单元格内容自适应宽度?table td th根据表格内容自动拉伸CSS属性,迪伦视界分享内联样式style和CSS方法:
table td th自适应宽度样式
内联样式style方法:
1 2 3 4 5 6 7 8 | <table> <tr> <th style=“white-space:nowrap;”>根据文字长度自动调整宽度</th> </tr> <tr> <td style=“white-space:nowrap;”>根据文字长度自动调整宽度</td> </tr> </table> |
CSS方法:
1 2 3 4 | td { white–space: nowrap; } |
让table th tr根据单元格内容自动调整宽带的CSS样式为:white-space:nowrap;
。