css控制table强制换行和强制不换行

<style type="text/css">
.AutoNewline
{
  word-break: break-all;强制换行

}

.NoNewLine

{

word-break:keep-all;//强制不换行

}
</style>

原文地址:https://www.cnblogs.com/songling/p/2377359.html