I have a <div> with hard-coded width. Inside the <div> are several hundred <span> tags. Can I wrap the spans so that line spacing is correct and wrapping is between spans? I use word-wrap: break-word and it looks a mess.

Here is pseudo code.

span {
  margin: 2px;
  border: 1px dotted #cccccc;
  padding: 4px 10px 4px 10px; 
    }
div {
  padding: 5px;
  margin: 5px;
  border: 1px solid #cccccc;
  width: 800px;
  word-wrap: break-word;
}

<div>
  <span>stuff</span>
  <span>more stuff</span>
  <span>even more stuff</span>
  .
  .
  .
</div>

Thanks!

EDIT for clarification: There should be multiple spans on each line, and wrapping should be between spans.

link|improve this question

79% accept rate
I'm lost at what you are trying to achieve. Would setting display:block and width:100% solve the issue? – Chris Felstead Nov 25 '11 at 20:50
my answer is based on you cannot edit the html or edit it with any kind of javascript – Huangism Nov 25 '11 at 20:51
Thanks for the edit – Felipe Alsacreations Nov 25 '11 at 21:00
i am more confused with that edit, multi spans on a line but with wrapping between spans - does that not contradict each other? or do you mean it will wrap only when the max character has been reached on that line then on the next /span it should wrap – Huangism Nov 25 '11 at 21:02
It's the same behaviour as floating blocks: fit as many blocks as possible on a line and then continue on the next one without ever cutting a block in half. Inline-block avoids problems caused by floats (.clearfix and so on) but creates another one due to whitespace between two span displayed as a space and that needs a fix (though not here, span are not glued together) – Felipe Alsacreations Nov 25 '11 at 21:08
feedback

6 Answers

up vote 2 down vote accepted

Span doesn't seem very semantic, maybe use an unordered list?

If I understood well your problem, you want as many span per line that'll fit but no span begininng on a line and finishing in another line?
Then the following fiddle: http://jsfiddle.net/MRR6P/ will do the trick. I added

span {
  line-height: 1.8;
  word-wrap; normal;
  display: inline-block;
}
link|improve this answer
Author doesn't specify if it's a requirement, but note that inline-block still isn't support by many common, but older, browsers. – Jon Adams Nov 25 '11 at 20:55
Yes he'll have to add the combo span { display: inline; zoom: 1; } for IE6 and IE7 only. The only remaining problem will be with Firefox 2 (solution display: -moz-inline-stack; with caveats), but Fx2 has died when IE6 is still present in quite a few multinational corp and China :) – Felipe Alsacreations Nov 25 '11 at 20:59
@FelipeAlsacreations This seems to work perfectly. I'm probably not going to need legacy browser support. Thanks! – user191688 Nov 25 '11 at 21:03
feedback

not 100% sure what you mean but if you want each span to display on a different line, then make them display block

span { display: block; }

edit

maybe

white-space:nowrap;

like this? http://jsfiddle.net/xNndp/1/ except with no width on the div of course

link|improve this answer
No, he doesn't want each span on a new line, he wants each span to not word wrap and only line break in between spans. – Jon Adams Nov 25 '11 at 20:51
oh i see, well word-break would not work since it will break unbreakable words. need some kind of no wrap thing like on the table cells – Huangism Nov 25 '11 at 20:55
feedback

So if you would like all those spans to take one line for themselves (thats what I understand), you should use <p>s or <li>s and not spans. Then, you could use line-height to control the space between lines.

Hell, you could even use <br>s to break your lines.

Another method would be to put your spans display:block, making them skip a line when they end.

link|improve this answer
feedback

Try using display:block; within the 's css. Then adjust the margin/padding for the required spacing.

link|improve this answer
feedback

Are you trying to make the span act like a div?

If so, you could use the following:

display: block;

Example:

http://jsfiddle.net/xNndp/

link|improve this answer
feedback

The quickest way, though not perfect, is to use span { white-space: nowrap }. Of course, if the <span> width extends beyond the <div> width you're going to have problems. You'll either need to make the <div> scrollable, or use JavaScript to fix this scenario.

The other display with white-space options in the CSS spec aren't cross-browser enough to work the way you want them to.

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.