Asp.Net-详细信息页面

时间:2020-07-16 03:41:10

标签: asp.net asp.net-mvc

如何在详细信息页面中以多行显示详细信息?当我在详细信息页面中输入要查看的数据时,它会并排保存,而我希望将其保存在下面。我假设我将需要更改“ col-sm-10”,但找不到我想要做的正确的选择。有什么帮助吗?

<dt class="col-sm-2">
            @Html.DisplayNameFor(model => model.Occurance)
        </dt>
        <dd class="col-sm-10">
            @Html.DisplayFor(model => model.Occurance)
        </dd>

1 个答案:

答案 0 :(得分:0)

尝试使用以下代码段。已为style

添加内联text-align
            <dt class="col-sm-2">
                @Html.DisplayNameFor(model => model.Occurance)
            </dt>
            <dd class="col-sm-10" style="text-align: initial;">
                @Html.DisplayFor(model => model.Occurance)
            </dd>

I got the result as in the image.