22
12

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 5 years have passed since last update.

tableの横幅がはみ出る時のCSS

Posted at

tableをdivでラップする方法がよく紹介されているのですが、こちらの方法でもokでした。

テーブルの横幅は一定で、セルの幅がどんどん狭くなって表示されます。

table {
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-word;
}
22
12
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
22
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?