How would I be able to have word wrap when text in <a> is way too long? I want the <li> to expand to the word wrap using CSS.

link|improve this question
Can you post a code sample with the sample text? – MatthewMartin Aug 10 '10 at 14:09
Please post an example - you could use jsbin.com to show us what you mean. – RussellUresti Aug 10 '10 at 14:24
feedback

2 Answers

Are you looking for the word-wrap property?

<ul>
    <li>
        <div style="word-wrap: break-word;">
            <a></a>
        </div>
    </li>
</ul>
link|improve this answer
feedback

Not exactly sure what you're after here, but the CSS3 text-wrap or word-wrap might do it.

You could also try setting a width on the <li>. That would force the text inside it to a certain width.

Finally, if the text does not contain spaces/wrappable chars, perhaps <wbr> might work

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.