shamazing
shamazing

Reputation: 730

CSS to prevent text wrapping on specific words?

I have product models that look like:

EF 200

That appear in paragraphs of text. I want to prevent the model from being wrapped between two lines due to the space. What method can be used to prevent the wrap? Do I need to enclose it in a span tag and, if so, what CSS property prevents the wrap?

Upvotes: 2

Views: 423

Answers (2)

PeeHaa
PeeHaa

Reputation: 72672

CSS

white-space:nowrap;

HTML

 EF 200

Upvotes: 3

Justin Niessner
Justin Niessner

Reputation: 245419

<span style="white-space: nowrap;">EF 200</span>

Of course if you're going to re-use that anywhere, I would break it out and make it its own class.

Upvotes: 8

Related Questions