如何在MVC中更改textBox的大小?

时间:2016-10-25 13:40:14

标签: css asp.net-mvc

尺寸变化不起作用:(

@Html.TextBox("Imie", new { @class = "boxx" })

的CSS:

.boxx{
    height : 400px;
    width : 500px;
}

the class = "boxx" is wrote in textBox

3 个答案:

答案 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;" })