Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードがあります。
.thing { width: 90%; height: 400px; border: 10px solid #000; }
<div class="thing"> aaaaaaaaaaaa </div>
問題は、多くのコンテンツを追加すると、テキストが div からはみ出すことです!
CSSのみを使用してこれを修正するにはどうすればよいですか?
.thing { width: 90%; height: 400px; padding: 10px solid #000; word-break:break-all; }
単語区切りを使用する
これは、スペースを追加していないときに起こります
このように「aa」の間にスペースを追加するだけです>「aaaaaa aaaaaa」12文字の単語はありません
しかし、この長い単語が必要な場合は、
word-break:break-all;