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.
簡単な例を次に示します。テキストは 1 行にあるはずですが、div が小さいため 3 つに分割されています。テキストをラップせずに div からこぼすにはどうすればよいですか?
HTML:
<div style="width: 20px;">Some text here</div>
結果:
Some text here
これ欲しい:
これを試して:
<div style="width: 20px; white-space: nowrap;">Some text here</div>