Is there a way to force huge urls such as http://www.google.de/search?q=65daysofstatic&hl=de&safe=off&prmd=ivnsl&source=lnms&tbm=isch&ei=P9NkToCRMorHsgaunaClCg&sa=X&oi=mode_link&ct=mode&cd=2&ved=0CBkQ_AUoAQ&biw=1697&bih=882 break when rendered in the website? I'd rather shorten it but where I'm working they've asked me to show the entire url but I only have a space of 320px to show it and it overflows.

Overflow:hidden, isn't an option either and adding a style to the td where the url is contained is simply ignored.

link|improve this question

66% accept rate
2  
Apparently, the answer is yes. SO seems to simply wrap them in a code block. – tvanfosson Sep 5 '11 at 13:58
but them behind an <a> tag – Mimisbrunnr Sep 5 '11 at 13:58
You mean beside javascript manipulations that would insert an abbreviated version of the URL ? Do you consider the option to use an external URL shortener service, too ? – sylvainulg Sep 5 '11 at 13:59
One possibility would be to replace '&' with ' &' - then it would wrap as it reaches the allocated width. Unfortunately, if somebody wants to copy it and paste into a browser, they would have to remove the spaces manually. – Aleks G Sep 5 '11 at 14:01
@Mimisbrunnr put them between like this? <a href="#">huge url</a> – Luis Armando Sep 5 '11 at 14:01
show 7 more comments
feedback

2 Answers

up vote 3 down vote accepted

CSS3 has a new feature:

word-wrap:break-word;

You can see a live example here (you must have a browser compatible with that new feature).

It's also the same tecnique adopted by StackOverflow, if you examine your long URL you will notice.

Alternatively you can try Hyphenator.

link|improve this answer
feedback
-ms-word-break: break-all;
     word-break: break-all;

     // Non standard for webkit
     word-break: break-word;

-webkit-hyphens: auto;
   -moz-hyphens: auto;
        hyphens: auto;

The above works in Internet Explorer 8+, Firefox 6+, iOS 4.2, Safari 5.1+ and Chrome 13+.

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.