首页htmlword_breakCSS Property Value - 如何word-break: break-all;

CSS Property Value - 如何word-break: break-all;

我们想知道如何word-break: break-all;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
table {
  border: 1px solid lightgray;
}

table th {
  background-color: silver;
  text-align: center;
  padding: 10px;
}

table td {
  width: 200px;
  border: 1px dotted silver;
  word-break: break-all;
}
</style>
</head>
<body>
  <table>
    <tr>
      <th>First</th>
      <th>Second</th>
    </tr>
    <tr>
      <td>Tiny text</td>
      <td>VeryLongNonBreakingLineOfTextThatNeedsToWrap</td>
    </tr>
  </table>
</body>
</html>