如何在MVC中设置标签的特定宽度?

时间:2013-04-21 12:25:05

标签: .net asp.net-mvc asp.net-mvc-3

如何在MVC中为标签设置特定宽度?

以下方法不包含HtmlAttributes属性。

@Html.Label

注意:我正在从控制器读取标签的宽度。它是动态的。

3 个答案:

答案 0 :(得分:1)

方法@Html.Label确实有HtmlAttributes属性。

所以这应该这样做:

@Html.Label("my label", new {style = "width: 10px;"})

答案 1 :(得分:1)

新{@class =“myclass”}怎么样并在css中设置宽度?

答案 2 :(得分:0)

你可以为标签写一个CSS。这样一个CSS就可以设置所有标签的宽度