テキストの行を1行として保持する - 行全体を折り返すか、まったく折り返さないか 質問する

テキストの行を1行として保持する - 行全体を折り返すか、まったく折り返さないか 質問する

テキストの行全体を1行下にドロップするか、まったくドロップしないようにしたい。

許容できる

How do I wrap this line of text - asked by Peter 2 days ago

許容できる

How do I wrap this line of text 
- asked by Peter 2 days ago

受け付けできません

How do I wrap this line of text - asked by Peter 
2 days ago

これは CSS で実現できますか?

ベストアンサー1

white-space: nowrap;この動作を定義するには、次を使用できます。

// HTML:

.nowrap {
  white-space: nowrap ;
}
<p>
      <span class="nowrap">How do I wrap this line of text</span>
      <span class="nowrap">- asked by Peter 2 days ago</span>
    </p>

// CSS:
.nowrap {
  white-space: nowrap ;
}

おすすめ記事