如何在mvc中强调@ Html.DisplayFor

时间:2014-06-04 08:34:17

标签: html asp.net-mvc html5 css3 asp.net-mvc-4

在一个标准中,我必须强调@Html.Display,如下所示。

enter image description here

我知道要做简单的标签但使用Razor语法我尝试了很多但没有运气。请指导我。以下是我的代码。

<label style="font-size: xx-large; font-weight: 700">@Html.DisplayFor(Model => Model.Lane_Number, new { @border_bottom:"thick solid #ff000"})</label>

1 个答案:

答案 0 :(得分:1)

您必须使用span元素才能使其正常工作。

<span class="test" style="border-bottom: 4px solid #CC4040;"> 

       @Html.DisplayFor(x => x.Lane_Number) 

</span>

确保您在DisplayFor下面有任何元素,它们在页面上足够远,否则下划线将被隐藏