0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

table のセル内でテキストが折り返さない時の解決方法

Last updated at Posted at 2021-03-17

現象

table 内のセルで英数字が折り返さず横幅を広げてしまう…:weary:

原因

改行に関する CSS プロパティ overflow-wrap が効いていない。

css
table {
  overflow-wrap : break-word;
  /* IE11 にも改行させる場合 */
  word-wrap: break-word;
}

解決方法

table のレイアウトに関する CSS プロパティ table-layout を設定する。

css
table {
  table-layout: fixed;
  overflow-wrap : break-word;
  /* IE11 にも改行させる場合 */
  word-wrap: break-word;
}

これでセル内で英数字が改行されました!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?