这是我的代码:
<%= Html.TextArea("txtMyTextArea", new { @style = "width: 100%; height:100%", @resize="horizontal" })%>
它不工作。为什么?
这是我的代码:
<%= Html.TextArea("txtMyTextArea", new { @style = "width: 100%; height:100%", @resize="horizontal" })%>
它不工作。为什么?
这可以使用max-height
属性并将其设置为等于height
. 请参阅此jsFiddle 示例。
您还可以通过添加max-width
属性来设置水平约束。请参阅此jsFiddle 示例。
我相信您的代码会“翻译”为:
<%= Html.TextArea("txtMyTextArea", new { @style = "width: 200px; height: 200px; max-height: 200px;"})%>