在html表中拆分并查看多行中的长句

前端之家收集整理的这篇文章主要介绍了在html表中拆分并查看多行中的长句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我看来,我必须将长句子分成 HTML表格中的多行.
我使用了一个代码,但它不起作用,因为我不想剪辑句子.我想用多行显示整个句子.

这是我使用的代码行:

<td class="col-md-3" style="overflow-wrap:break-word;text-overflow:clip;">@Html.DisplayFor(ModelItem => item.Note,new { @class = "note" })</td>

解决方法

您可以使用自动换行:break-word
<td class="col-md-3" style="word-wrap:break-word;">@Html.DisplayFor(ModelItem => item.Note,new { @class = "note" })</td>

if you want to wrap big word then you can use word-break: break-all

<td class="col-md-3" style="word-break: break-all;">@Html.DisplayFor(ModelItem => item.Note,new { @class = "note" })</td>
原文链接:https://www.f2er.com/html/226039.html

猜你在找的HTML相关文章