gpt4 book ai didi

c# - Razor 的文本显示太长

转载 作者:太空宇宙 更新时间:2023-11-04 02:26:07 24 4
gpt4 key购买 nike

我正在做一个 ASP.NET MVC 网站,我有一个关于 Razor 的小问题。

我正在使用一个

@Html.DisplayFor(model => model.description)

显示产品的描述。但是如果描述真的很长,比如:

This description is really long and I don't want to scroll to see the end of it

向右滚动看到它的结尾真的很糟糕......

我该怎么做才能有这样的显示:

This description is really

long and I don't

want to scroll to see

the end of it

我可以用 displayfor 来做吗?

预先感谢您的帮助

最佳答案

你可以这样做:

CSS

.wordwrap{
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -webkit-pre-wrap; /*Chrome & Safari */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* css-3 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
}

查看

<div class="wordwrap">
@Html.DisplayNameFor(model => model.description})
</div>

关于c# - Razor 的文本显示太长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37297237/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com