App下載
首頁htmltdHTML Element Style - 如何在表單元格中設置TD中的div寬度

HTML Element Style - 如何在表單元格中設置TD中的div寬度

我們想知道如何在表單元格中設置TD中的div寬度。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100px;
}

td {
  white-space: nowrap;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>
        <div>Here is plenty of text to cut</div>
      </td>
    </tr>
  </table>
</body>
</html>