根据文本量扩展 @Html.DisplayFor 的高度
有没有办法设置宽度但扩大 @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于你的环境。
假设您的
@Html.DisplayFor()
是该段落的一部分。然后您可以在段落样式中设置宽度,如下所示:
当然最好使用内部或外部 CSS。
使用代码格式化某些文本的示例上面:
It's depend on your environment.
To put the case that your
@Html.DisplayFor()
is part of the paragraph. Thenyou can set width in the paragraph style like below:
Of course it's better to use internal or external CSS.
Example of formatting some text with code above: