bootstrap表格文字汉字换行

bootstrap表格文字汉字换行
点击领取淘宝京东拼多多唯品会优惠券
{field: 'status', title: '任务状态',width:100,cellStyle:{
   css:{'white-space': 'break-spaces'}
 }},

或者
{field: 'status', title: '任务状态',formatter: function(value,row,index){                        
      return "<span style='color:red;white-space:break-spaces;' title=''>任务失败</span>";
                            
  },width:100},