Extreme Thinking
網頁英文自動換行 , 不亂切字

2017-09-19


改成 word-break: break-all; 好了 ……

我在 php 內加個


<?php
echo '<style type="text/css">
.AutoNewline
{
display: inline-block;
word-break: break-word;
}
</style>
';

然後放到相關的地方


<td class='AutoNewline'> ...... </td>