I have this piece of HTML

<div id='permalink_section'>
  <a href="here goes a very long link">here goes a very very long link</a>
</div>

with, for now, this CSS

div#permalink_section { width: 960px }

The link text can be very long and it overflows the div when it's length does exceed the div width. Is there a way to force the link to break and go on the next line when its width exceeds the div width?

link|improve this question

feedback

5 Answers

up vote 8 down vote accepted

The following is a cross browser compatible solution.

#permalink_section
{
    white-space: pre-wrap; /* css-3 */    
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */    
    white-space: -o-pre-wrap; /* Opera 7 */    
    word-wrap: break-word; /* Internet Explorer 5.5+ */
}

Check working example at http://jsfiddle.net/5zsqP/1

link|improve this answer
there is no white spaces in my link, will the white-space property works? – Florent2 Mar 9 '11 at 4:57
Yes you need them for cross browser compatibility. I updated my answer and included a working example on jsfiddle. – Hussein Mar 9 '11 at 5:01
thanks Hussein for your help. I've noticed that in your example there are spaces, here is a fork without spaces jsfiddle.net/wxBxQ unfortunately I have currently access only to browsers supporting word-wrap, so I would have to check with browser not supporting word-wrap – Florent2 Mar 9 '11 at 5:06
I want to check that it is working with browsers not supporting word-wrap:break-word as I want to make sure the white-space property correctly limit the width for my links that don't contain white spaces. For that I'll try with older browsers, but for now I don't have access to them. – Florent2 Mar 9 '11 at 5:12
Thanks, this is great but not perfect. This only works if you set absolute widths. If width:100% this no longer works. To all those that don't know, width:100% means set the size to 100% of the outer container. Basically, I don't want horizontal scroll bars to appear on my page ever. Anyone have a solution? – pilavdzice Mar 22 at 15:43
show 1 more comment
feedback

if you're okay with css3, there's a property for that:

word-wrap:break-word
link|improve this answer
feedback

wrap link inside another div with smaller width

<html>
<head><title></title>

<style type="text/css">
div#permalink_section { width: 960px }

</style>
</head>
<body>
<div id='permalink_section'>
<div id="linkwrap" style="width:100px">
  <a href="here goes a very long link">here goes a very very long link</a>
  </div>
</div>
</body>
</html>
link|improve this answer
does not work, for example http://example.com/index?param=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa‌​aaaaaaaaaaaaaaaoverflows – Florent2 Mar 9 '11 at 4:59
yes it does, I guess adding overflow:hidden; could help with that but it doesn't look good. – Andrew Douglas Mar 9 '11 at 5:02
feedback

You could also wrap each letter of the link in <span></span> using javascript for example.

<a href="http://foo.bar"><span>f</span><span>o</span><span>o</span></a>

But I would go for the css3 approach.

link|improve this answer
1  
what da.... Are you sure people want to wrap every letter of a link in a span. – Hussein Mar 9 '11 at 4:51
haha, just a crazy idea I got for a really bad hack :p – Arnar Yngvason Mar 9 '11 at 15:10
feedback
div#permalink_section
{   
    width:960px;
    overflow:hidden;
}

or

div#permalink_section
{   
    width:960px;
    word-wrap:break-word
}

or use javascript to truncate the length of the link's text, replacing the end with "..."

Working example of the JS method: http://jsfiddle.net/fhCYX/3/

link|improve this answer
thanks, word-wrap:break-word works fine, can't use the other solutions you proposed because I need to display the whole link – Florent2 Mar 9 '11 at 4:57
I see. Oops. :) – Michael Mar 9 '11 at 5:09
feedback

Your Answer

 
or
required, but never shown

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