Reputation: 18629
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
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
Reputation: 522523
You could use a ­
and/or a zero-width space for this purpose.
Upvotes: 19