这是我的代码:
<%= Html.TextArea("txtMyTextArea", new { @style = "width: 100%; height:100%", @resize="horizontal" })%>
它不起作用。为什么呢?
答案 0 :(得分:0)
使用max-height
属性并将其设置为height
可以更轻松地完成此操作。请参阅此jsFiddle example。
您还可以通过添加max-width
属性来设置水平约束。请参阅此jsFiddle example。
我相信你的代码会'翻译'为:
<%= Html.TextArea("txtMyTextArea", new { @style = "width: 200px; height: 200px; max-height: 200px;"})%>