首页htmltdHTML Element Style - 如何在表单元格中隐藏溢出文本

HTML Element Style - 如何在表单元格中隐藏溢出文本

我们想知道如何在表单元格中隐藏溢出文本。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.table_class {
  width: 20px;
}

.table_class div {
  height: 2.5em;
  overflow: hidden
}
</style>
</head>
<body>
  <table border="3">
    <tr>
      <td class="table_class"><div>111111 222222 333333</div></td>
      <td class="table_class">234</td>
    </tr>
    <tr>
      <td class="table_class">2321</td>
      <td class="table_class">ssS</td>
    </tr>
  </table>
</body>
</html>