cambia così
codice:
.download li a,
.download li a:visited {
width : 130px;
word-wrap : break-word;
-moz-binding : url(wordwrap.xml#wordwrap);
text-decoration:none;
}
metti questo file nella cartella del file css o del file html che contiene queste regole
codice:
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
<binding id="wordwrap" applyauthorstyles="false">
<implementation>
<constructor>
//<![CDATA[
var elem = this;
doWrap();
elem.addEventListener('overflow', doWrap, false);
function doWrap() {
var walker = document.createTreeWalker(elem, NodeFilter.SHOW_TEXT, null, false);
while (walker.nextNode()) {
var node = walker.currentNode;
node.nodeValue = node.nodeValue.replace(/\s{2,}/g, ' ');
node.nodeValue = node.nodeValue.split('').join(String.fromCharCode('8203'));
}
} //]]>
</constructor>
</implementation>
</binding>
</bindings>
e chiamalo wordwrap.xml
dovrebbe funzionare
Ciao