これが私のコードです:
<%= 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;"})%>