word wrap on html paragraph

I have a paragraph tag inside a table, and for example it has a text like this...4: asldkflaksdjflks, lasjdlfjsaldfjasldjfoajsdkfjaslkdjlkfasjdfwoidjfalk,zmncv,mznoqeworjoiejflaksdlfjwafHow can the text wrap something like this..4: asldkflaksdjflks, lasjdlfjsaldfjasldjfoajsdkfjaslkdjlkfasjdfwoidjfalk,zmncv,mznoqeworjoiejflaksdlfjwafI have tried \[code\]word-wrap:break-word;\[/code\] but it doesn't seem to work. I'm using IE8Here is my css:\[code\]#notes table tr td p{ font-family:Arial; padding:2% 2% 2% 5%; table-layout: fixed; word-wrap: break-word;\[/code\]Update 1I was wrong with my question. Sorry about that. I want the text not to wrap, even though there is a white-space. But it will go down to the next line if necessary. Hope that I'm clearer this time.Is there a character that looks like a space, but doesn't serve as a breakpoint for the word wrap?
 
Top