回答

どなたかはわかりませんが、こいつの問題点は上位のコンテナであるformのサイズがIEによって最小にされているためです。以下のようにすると解決できます

 <head>
 <style type="text/css"><!--
  body { height:100%;  overflow:hidden;}
  form#red { width:100%; height: 100%; background: red;}
  textarea#blue { width: 100%; height: 90%; background: blue;}
 --></style>
 </head>
 <body>
  <form id="red">
   <input><input type=submit><br>
   <textarea id="blue">
   </textarea>
   </form>