Is there a CSS property that tells the browser to word-wrap at any position, not only at word boundaries?

My current issue is this. I am faced with HTML similar to this: (I cannot change the HTML, unfortunately)

<div id='categories'>Categories:
    <ul>
        <li>Category One</li>
        <li>Category Two</li>
        <li>Category Three</li>
    </ul>
</div>

I want it to display in a flowing manner according to the width of the viewport:

Categories:  • Category One  • Category Two   • Category Three
|----------------------------------------------------------------| (viewport)

Categories:  • Category One  • Category Two
• Category Three
|----------------------------------------------| (viewport width)

Categories:  • Category One
• Category Two   • Category Three
|----------------------------------| (viewport width)

... but NOT word-breaking within a category name.

So I tried this:

 #categories ul {
  display: inline;
 }
 #categories li {
  display: inline;
  padding: 0 1em;
  white-space: nowrap;
 }
 #categories li:before {
  content: '• ';
 }

Unfortunately this causes them all to run in one line. So I need to be able to tell the ul to allow wrapping anywhere between any adjacent lis. How do I do that?

I need a CSS-only solution; I cannot change the HTML...

link|improve this question

Does the <ul> have a parent element? – Kyle Sevenoaks Oct 16 '11 at 12:35
@KyleSevenoaks: Yes, #categories :-p – Timwi Oct 16 '11 at 13:37
Hehe, figured that out, added it to my answer :) The demo works, but it doesn't use the break-word as I don't think that fits. It simply sizes the UL element to keep the lis as you wish. – Kyle Sevenoaks Oct 16 '11 at 13:39
Your HTML is invalid (both HTML 4 and 5); bare text is not allowed in <ul>. I don't offhand know whether all browsers (and/or the HTML5 algorithm) recover the same. – Kevin Reid Oct 16 '11 at 13:47
@KevinReid: You’re right. I checked again and the bare text is actually outside the UL. Edited. – Timwi Oct 16 '11 at 15:26
feedback

3 Answers

up vote 2 down vote accepted

A useful trick for wrapping boxes is to make them all float: left. If I do this to your example, then I get the layout you want except for "Categories:" being pushed to the right. Unfortunately, I don't know of a way to select the text so as to make it floated.

We can use content to re-insert "Categories:" as one of the floated boxes, which leaves the problem of how to hide the existing "Categories:" text without hiding the other contents of #categories. The cleanest way I thought of was to make it transparent. However, this is a CSS3 feature; also, this loses any inherited color due to the need to explicitly set it on the ul.

This stylesheet produces everything you want, but needs some tweaking for spacing.

#categories {
 color: transparent;
}
#categories ul {
 color: black;
}
#categories li {
 display: inline;
 float: left;
 padding: 0 1em;
 white-space: nowrap;
}
#categories li:before {
 content: '• ';
}
#categories li:first-child:before {
 content: 'Categories: • ';
}
link|improve this answer
Sorry about the invalid HTML, I copied it down wrong. I edited the question. The bare text is actually outside the UL. – Timwi Oct 16 '11 at 15:28
@Timwi: I've edited my answer; I believe it now answers your question, though it needs some spacing work. – Kevin Reid Oct 16 '11 at 17:15
Very hacky, but does the right thing. Thanks! – Timwi Oct 16 '11 at 19:05
@KevinReid I recommend visibility:hidden and visibility:visible over color:transparent. The additional advantage is that the text stays invisible when a user selects the text. – Rob W Oct 16 '11 at 19:18
Perfect! I didn't know that visibility could be counteracted in children. – Kevin Reid Oct 16 '11 at 19:24
feedback

You can insert at position x (arbitrary) by using this CSS (example: x=2):

#categories li:nth-child(2):before{
    display:block;
    content: "";
}

:nth-child() is a pseudo-selector. If you want to add a line break before each 3rd list item, use :nth-child(3n).

The only disadvantage is that no bullet is shown before the list item. If content:"" is omited, the bullet will appear, and shift the element to an unwanted location.

Fiddle: http://jsfiddle.net/LfJT7/

See http://kimblim.dk/css-tests/selectors/ for a table which shows the browser support for (pseudo-)selectors.

link|improve this answer
Note: My solution's effectiveness is based on the fact that block-level elements don't tolerate neighbours. ## block ## = ## block\n ##. – Rob W Oct 16 '11 at 14:00
Great answer :) – Kyle Sevenoaks Oct 16 '11 at 14:10
I don’t want to add linebreaks anywhere specific. I want it to wrap according to the flow. – Timwi Oct 16 '11 at 15:25
Care to explain the downvote? This answer answers the current literal question and title. The answer serves much use to future visitors. – Rob W Oct 16 '11 at 17:29
−1 for being too ultra-literal and trying too hard to defend your answer even after being told that it is not useful. I told you what I needed. I also edited the question now to be clearer. Not much else I can do. (BTW you now have 2 downvotes; I wasn’t the original downvoter. I gave you a chance.) – Timwi Oct 16 '11 at 19:11
feedback

Maybe this?

<ul>Categories: <li>Category One</li><wbr><li>Category Two</li><wbr><li>Category Three</li></ul>

link|improve this answer
Nevermind, you cannot change the html :P. – Jauzsika Oct 16 '11 at 12:28
"(I cannot change the HTML, unfortunately)" – supertopi Oct 16 '11 at 12:28
feedback

Your Answer

 
or
required, but never shown

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