0

我有 MVC 应用程序。我正在为 CSS 使用引导程序。现在,我想在视图中使用宽度约为 500 像素的文本区域。

我有这个代码

 @Html.TextArea("Comment", "", 5, 200, new { @class = "Comment-" + @ViewBag.EId })

现在,在 bootstrap TextArea 中,宽度是 206px,现在我只想在这个视图中更改 textArea 的宽度。我不想更改 CSS 中的值。

这个怎么做 ?

4

1 回答 1

2
@Html.TextArea(
    "Comment", 
    "", 
    5, 
    200, 
    new { 
        @class = "Comment-" + @ViewBag.EId, 
        style = "width: 500px" 
    }
)
于 2013-03-07T07:46:02.653 回答