div内にtextareaがあります:
<div id="textareawrapper">
<textarea id="chat"></textarea>
</div>
...そしてCSS:
#textareawrapper {
border 1px dashed pink;
margin:0;padding:0;
position: absolute;bottom: 0em;left:7.5em;right:7.5em;height: 7em;
}
#textareawrapper textarea {margin:0;padding:0;width: 100%;height:7em;}
IE 7はそれをうまくレンダリングします:textareaの高さはラッピングdivの高さと同じです。MozillaとChromeでは、ラッピングdivは7emの高さにレンダリングされますが、textareaの高さが20〜25pxであるため、textareaの下部とdivの下部の境界線の間にギャップがあります。誰かがこれを修正する方法を知っていますか?