无法删除的桌子上的空白区域(Bootstrap)

时间:2015-06-25 21:37:53

标签: css twitter-bootstrap razor

表格中有一个我无法删除的空白区域。我有一个很长的字符串,但表没有伸展。使用:

@Html.Label (item.Description, new {style = @" word-wrap : break-word; width: 10%; "})

一切都很好,直到那里有空间应该有字符串,但现在它是空的!

链接上的图片,可以看到发生了什么:http://gyazo.com/a1ba58140e8f94e2e4f93db388586877

1 个答案:

答案 0 :(得分:0)

在样式

中尝试white-space: pre-line;
@Html.Label (item.Description, new {style = @" word-wrap : break-word; width: 10%; white-space: pre-line;"})