Kirk Strobeck
Kirk Strobeck

Reputation: 18629

Breaking slash, not non-breaking

img

Is there such a thing as a breaking slash?
Something that will allow for more lines?

Currently the slash is non-breaking..

Upvotes: 12

Views: 8999

Answers (2)

Aziz Shaikh
Aziz Shaikh

Reputation: 16544

Try this:

<div>Citrate/<wbr>Lactate</div>

<wbr> is for word breaks telling the browser that it may insert a line break here if needed.

Upvotes: 13

deceze
deceze

Reputation: 522523

You could use a &shy; and/or a zero-width space for this purpose.

Upvotes: 19

Related Questions