次のコードがあります。
test.html:
<textarea class ="errortext" rows="1" cols="30" value=""> </textarea>
test.css:
textarea.errortext {
white-space: nowrap;
overflow-y: hidden;
overflow-x: hidden;
overflow: -moz-scrollbars-horizontal;
width:auto; height:auto;
position:absolute;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
IE では、期待どおりに動作します。1 行 30 列のボックスが表示され、ボックスはサイズ変更できません。Firefox ではこれは正しくなく、ボックスはサイズ変更可能です。
どうすればこれを修正できますか?