更改尺寸的不工作:(如何更改MVC中textBox的大小?
@Html.TextBox("Imie", new { @class = "boxx" })
的CSS:
.boxx{
height : 400px;
width : 500px;
}
the class = "boxx" is wrote in textBox
更改尺寸的不工作:(如何更改MVC中textBox的大小?
@Html.TextBox("Imie", new { @class = "boxx" })
的CSS:
.boxx{
height : 400px;
width : 500px;
}
the class = "boxx" is wrote in textBox
看一看at the docs(或智能感知),你會看到可用重載 嘗試
@Html.TextBox("Imie", null, new { @class = "boxx" })
你可以嘗試下面的代碼:
@Html.TextBox("Imie", null, new { @class = "boxx" })
第3個值爲HTML
屬性。
希望它解決了您的問題。
感謝
,你也可以嘗試內聯CSS,如果你想
@Html.TextBox(x => x.testBox, new { style = "width: 20px;" })