3
3

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.

display: inline-block 使用時にword-wrap: break-word が効かない

Posted at

長い単語やURLをページに表示する際、何も指定しないと改行してくれません。
CSSで、word-wrap: break-word を指定すると改行してくれます。

ただ、同時にdisplay: inline-block を利用すると効きません。
その場合は、max-width: 100% を指定することでうまくいきます。

.message {
 display: inline-block;
 word-wrap: break-word;
 max-width: 100%;
}
3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?