Let's say I have this text that I want to display in an HTML table cell:

Honey Nut Cheerios, Wheat Chex, Grape-Nuts, Rice Krispies, Some random cereal with a very long name, Honey Bunches of Oats, Wheaties, Special K, Froot Loops, Apple Jacks

and I want the line to break preferentially after one of the commas.

Is there a way to tell the HTML renderer to try breaking at some designated spot, and do that first before trying to break after one of the spaces, without using non-breaking spaces? If I use non-breaking spaces then it makes the width larger unconditionally. I want the line break to happen after one of the spaces, if the line-wrapping algorithm has tried it with the commas first and can't get the line to fit.

I tried wrapping text fragments in <span> elements but that doesn't seem to do anything helpful.

<html>
  <head>
      <style type="text/css">
        div.box { width: 180px; }
        table, table td { 
          border: 1px solid; 
          border-collapse: collapse; 
        }
      </style>
  </head>
  <body>
    <div class="box">
      <table>
      <tr>
          <td>lorem ipsum</td>
          <td>lorem ipsum</td>
          <td>lorem ipsum</td>
      </tr>
      <tr>
          <td>lorem ipsum</td>
          <td>
            <span>Honey Nut Cheerios,</span>
            <span>Wheat Chex,</span>
            <span>Grape-Nuts,</span>
            <span>Rice Krispies,</span>
            <span>Some random cereal with a very long name,</span>
            <span>Honey Bunches of Oats,</span>
            <span>Wheaties,</span>
            <span>Special K,</span>
            <span>Froot Loops,</span>
            <span>Apple Jacks</span>
          </td>
          <td>lorem ipsum</td>
      </tr>
      </table>
    </div>
  </body>
</html>

note: It looks like the CSS3 text-wrap: avoid behavior is what I want, but I can't seem to get it to work.

link|improve this question

71% accept rate
you can use non-breaking-spaces inside the spans. – Gaby aka G. Petrioli Mar 22 '11 at 14:35
But I don't want to use non-breaking spaces. I'd love to use "don't-want-to-break-here-but-I-will-if-I-have-to" spaces, but as far as I know, those exists. – Jason S Mar 22 '11 at 14:44
@Jason.. i feel you .. but it is not possible .. added an answer. – Gaby aka G. Petrioli Mar 22 '11 at 14:47
Hmmm… Rice Krispies. – Mathias Bynens Mar 22 '11 at 15:08
drat, that's what happens when computer scientists write rendering algorithms w/o input from typographers. – Jason S Mar 22 '11 at 15:10
feedback

5 Answers

up vote 1 down vote accepted

The answer is no. You cannot alter the line breaking algorithm used.

You can go near with the non-breaking-space &nbsp; but only between words that go together (what you have in spans, but not after the comma ), or you can use the white-space:nowrap as @Marcel mentioned.

Both solutions do the same thing, and both will not break a group of words if it does not fit on its own.

link|improve this answer
argh. :-( that stinks, it means I either have to live with it, or I need to try to detect long lines on my own in an attempt to defeat the line-breaking algorithm. – Jason S Mar 22 '11 at 14:48
feedback

With your mark-up above use span { white-space:nowrap }. It's as good as you can expect really.

link|improve this answer
Thanks, but that won't work because it basically translates spaces within a span element to &nbsp;, and keeps the spaces from breaking at all. I just want to discourage the renderer from breaking in between one of my items, but if it has to, I want it to do so. – Jason S Mar 22 '11 at 14:46
@Jason S: I've added other options to my answer. – Marcel Mar 22 '11 at 14:57
how is &nbsp;<wbr> any different than a space? From what I can tell, the choices are either that a given character allows a break or does not. So '-' and ' ' and &#8203; and <wbr> and &shy; all allow a break (printing a hyphen, space, nothing, nothing, and hyphen-only-on-break, respectively), whereas &nbsp; does not. – Jason S Mar 22 '11 at 15:08
@Jason S: Added example usage. – Marcel Mar 22 '11 at 15:17
I just tried it, and it doesn't seem to take priority over spaces for line-breaking. The priority is what I need. If the breaking behavior for a different character or element is either yes or no, then there is no solution for my problem. If there are relative line-breaking priorities, then I might have a solution. – Jason S Mar 22 '11 at 15:20
show 2 more comments
feedback

Ok, I know this is an old question, but I thought I'd share this anyway if it would help anyone.

By using

span.avoidwrap { display:inline-block; }

and wrapping the text I want to be kept together in

<span class="avoidwrap"> Text </span>

it will wrap first in preferred blocks and then in smaller fragments as needed.

Hope this helps someone

link|improve this answer
feedback

There’s an HTML element for that™: the (now standardized) <wbr> element.

I’d advise you to use that. It may not work everywhere, but it’s the best you can do without going through hoops.

link|improve this answer
See my comment to Marcel's mention of wbr. It looks like <wbr> just ends up as a zero-width space, it doesn't seem to solve my problem. – Jason S Mar 22 '11 at 15:22
feedback

Use <div> instead of <span>, or specify a class for SPAN and give it the display:block attribute.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.