0

我正在创建一个社交网站,例如 facebook。所以我有一个文本框和一个右列。问题是当我调整文本框的大小时,右列随着调整大小的文本框而下降。我怎样才能让正确的 cloumn div 留下来?

这是代码点击我查看源代码

4

1 回答 1

0
 Change this code in your file after that when you resize your textarea, button will go   next to textarea.
 In Html file:

//<div class="contentText">
   <input type="submit"  class="contentText" value="Post "  id="update_button"  class="update_button"/>
 //</div>

 And 
 In css file:

 textarea { border:0px none; -moz-box-sizing:border-box; box-sizing: border-box; -webkit-box-sizing: border-box; overflow:hidden; height:30px; width:450px; padding:4px; float:left;}
于 2012-10-07T15:26:30.867 回答