我有一个长逗号分隔的字符串,我正在尝试使用css样式的word-wrap:break word但它似乎不适用于没有空格的字符串.这是预期的吗?
我的表看起来像这样:
<table class="table table-striped" style="margin-top:20px;background-color:#f2f2f2;"> <tbody> <tr> <td width="150px" valign="top" style="white-space:nowrap;"><b>Favorite Activities:</b></td> <td width="50px" style="word-wrap:break-word;">some,really,long,string,with,out,any,spaces,just,a,comma,delimited,list</td> </tr> </tbody> </table>
这有什么工作吗?