根据文本量扩展 @Html.DisplayFor 的高度

发布于 2025-01-11 06:11:33 字数 156 浏览 0 评论 0原文

有没有办法设置宽度但扩大 @Html.DisplayFor 文本框的高度?也许可以根据需要自动换行文本?

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

EB

Is there a way to have a set width but expand the height of a @Html.DisplayFor text box? Maybe autowrap the text as needed?

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

EB

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风来 2025-01-18 06:11:33

这取决于你的环境。

假设您的 @Html.DisplayFor() 是该段落的一部分。然后
您可以在段落样式中设置宽度,如下所示:

<p style="width:150px;">    
    @Html.DisplayFor(model => model.description)                 
</p><br>

当然最好使用内部外部 CSS。

使用代码格式化某些文本的示例上面:

输入图像描述这里

It's depend on your environment.

To put the case that your @Html.DisplayFor() is part of the paragraph. Then
you can set width in the paragraph style like below:

<p style="width:150px;">    
    @Html.DisplayFor(model => model.description)                 
</p><br>

Of course it's better to use internal or external CSS.

Example of formatting some text with code above:

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文