我有 textarea 和一个包含该 textarea 的 DIV 容器。
<div class="holder">
<div style="float:left;">
<img src="https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc6/211204_417552211638405_1828134258_q.jpg">
</div>
<div style="float:left;">
<textarea class="grow" row="5" cols="20"></textarea>
</div>
</div>
我正在使用自动增长插件。
$(document).ready(function(){
$(".grow").autogrow();
});
当 textarea 根据内容调整大小时,容器 div 不会相应扩展。我试图添加
Height: 100%;
但这不起作用,我看到它是导致问题的浮动属性,但我不知道如何使它与浮动属性一起使用。