TABLE セルのはみ出す内容をカットする

投稿日:2022-10-01 投稿者:PS カテゴリ:その他 タグ: , ,

table {
  width: 100%;
  table-layout: fixed;
}
table td {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}