Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我也坚持在 html 和 MVC3 中创建多行标签(使用剃刀引擎)。如果你有,请给出想法。谢谢。
我使用下面的代码并解决了问题:
word-wrap: break-word;
您可以使用Label MVC Helper 方法来呈现标签,并使用white-space CSS 属性使其成为多行:
<div style="white-space:pre-wrap">@Html.Label("", Model.MyMultiLineText)</div>