我有以下的HTML代碼如何製作2個靈活塊和一個固定?
<div style="border: 1px solid #000; width: 700px; line-height: 38px; display: block">
<div style="margin-left:10px;width: 222px; float: left; margin-right: 10px;">
Enter your question
</div>
<div style="float: left; width: 390px;">
<textarea style="width: 100%; height 30px;">yuor text here</textarea>
</div>
<div style="float: right; margin-left: 14px; margin-right: 5px;">
<input type="button" value="Send">
</div>
</div>
但我不喜歡它。我做了固定的第一塊,但在這個文本應該改變,我可以碰撞。使用textarea的塊應該始終爲100%。並且按鈕塊應固定並位於右側。
那麼我怎樣才能讓第一塊靈活呢?