Textarea仅通过水平拖动来调整大小

时间:2012-04-04 08:55:29

标签: asp.net-mvc

这是我的代码:

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

它不起作用。为什么呢?

1 个答案:

答案 0 :(得分:0)

使用max-height属性并将其设置为height可以更轻松地完成此操作。请参阅此jsFiddle example

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

我相信你的代码会'翻译'为:

<%= Html.TextArea("txtMyTextArea", new { @style = "width: 200px; height: 200px; max-height: 200px;"})%>