我有一个很长的逗号分隔字符串,我正在尝试使用 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,really,long,long,string,with,out,any,spaces,just,a,comma,delimited,list</td>
</tr>
</tbody>
</table>
有什么解决方法吗?