尺寸变化不起作用:(
@Html.TextBox("Imie", new { @class = "boxx" })
的CSS:
.boxx{
height : 400px;
width : 500px;
}
答案 0 :(得分:2)
看看at the docs(或智能感知),你会看到可用的重载。 尝试
@Html.TextBox("Imie", null, new { @class = "boxx" })
答案 1 :(得分:1)
你可以尝试下面的代码:
@Html.TextBox("Imie", null, new { @class = "boxx" })
第3个值适用于HTML
属性。
希望它能解决你的问题。
由于
答案 2 :(得分:1)
如果你想
,也可以尝试使用Inline css@Html.TextBox(x => x.testBox, new { style = "width: 20px;" })