最新のWeb開発のチュートリアル
 

Bootstrap Input Sizing


Input Sizing in Forms

以下のようなクラスを使用して、入力要素の高さを設定し.input-lg.input-sm

以下のようなグリッド列クラスを使用して、要素の幅を設定し.col-lg-*.col-sm-*


Height Sizing

次の例では、高さの異なる入力要素を示しています。

<form role="form">
  <div class="form-group">
    <label for="inputdefault">Default input</label>
    <input class="form-control" id="inputdefault" type="text">
  </div>
  <div class="form-group">
    <label for="inputlg">input-lg</label>
    <input class="form-control input-lg" id="inputlg" type="text">
  </div>
  <div class="form-group">
    <label for="inputsm">input-sm</label>
    <input class="form-control input-sm" id="inputsm" type="text">
  </div>
</form>
»それを自分で試してみてください

することができます追加することにより、 水平方向のフォーム速やかサイズのラベルとフォームコントロール.form-group-*<div class="form-group">要素:

<form class="form-horizontal" role="form">
  <div class="form-group form-group-lg">
    <label class="col-sm-2 control-label" for="lg">form-group-lg</label>
    <div class="col-sm-10">
      <input class="form-control" type="text" id="lg">
    </div>
  </div>
  <div class="form-group form-group-sm">
    <label class="col-sm-2 control-label" for="sm">form-group-sm</label>
    <div class="col-sm-10">
      <input class="form-control" type="text" id="sm">
    </div>
  </div>
</form>
»それを自分で試してみてください

Column Sizing

以下の例は、異なる使用して幅の異なる入力要素を示し.col-xs-*クラスは:

<div class="col-xs-2">
  <label for="ex1">col-xs-2</label>
  <input class="form-control" id="ex1" type="text">
</div>
<div class="col-xs-3">
  <label for="ex2">col-xs-3</label>
  <input class="form-control" id="ex2" type="text">
</div>
<div class="col-xs-4">
  <label for="ex3">col-xs-4</label>
  <input class="form-control" id="ex3" type="text">
</div>
»それを自分で試してみてください

説明文

使用.help-block形態のブロックレベルのヘルプテキストを追加するクラス:

<div class="form-group">
  <label for="pwd">Password:</label>
  <input type="password" class="form-control" id="pwd" placeholder="Enter password">
  <span class="help-block">This is some help text...</span>
</div>
»それを自分で試してみてください