0

这是我的代码:

<%= Html.TextArea("txtMyTextArea", new { @style = "width: 100%; height:100%", @resize="horizontal" })%>

它不工作。为什么?

4

1 回答 1

0

这可以使用max-height属性并将其设置为等于height. 请参阅此jsFiddle 示例

您还可以通过添加max-width属性来设置水平约束。请参阅此jsFiddle 示例

我相信您的代码会“翻译”为:

<%= Html.TextArea("txtMyTextArea", new { @style = "width: 200px; height: 200px; max-height: 200px;"})%>
于 2012-04-04T08:59:20.817 回答