Textarea水平宽度

时间:2014-01-23 13:09:41

标签: php html css twitter-bootstrap textarea

我已经尝试了几个小时,包括提供的Bootstrap .css文件,以使我的textareas更宽。

我在其中一些文章中会有很多文字,对我来说它们只是很小,可以正确使用它们。

请看一下我制作的截图:

enter image description here

这是我的代码:

<form class="form-horizontal" role="tld_edit" method="post" action="">
   <div class="form-group">
    <label for="PrimaryInternalNote" class="col-sm-2 control-label">
      <strong><?php echo SYSTEM::Com(389); ?></strong>
    </label>
    <div class="col-sm-10">
     <textarea class="form-control" rows="3" 
       placeholder="<?php echo SYSTEM::Com(395); ?>" 
       id="PrimaryInternalNote" name="PrimaryInternalNote">
     <?php echo $row['PrimaryInternalNote']; ?>
     </textarea>
    </div>
 </div>    
</form>

这是我在此表单中为每个输入使用的内容。我希望它宽2-3倍,直到

的宽度
<div class="container">

其中包含所有数据。

关于如何做到这一点的任何想法?

1 个答案:

答案 0 :(得分:0)

使用它:

<textarea cols="40" rows="10"></textarea>
         //missing