Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Bootstrap 输入大小


表单中的输入大小

使用 .input-lg.input-sm 类来设置输入元素的高度。

使用网格列类 .col-lg-*.col-sm-* 来设置元素的宽度。


高度大小

以下示例显示了不同高度的输入元素

示例

<form>
  <div class="form-group">
    <label for="inputsm">小型输入</label>
    <input class="form-control input-sm" id="inputsm" type="text">
  </div>
   <div class="form-group">
    <label for="inputdefault">默认输入</label>
    <input class="form-control" id="inputdefault" type="text">
  </div>
  <div class="form-group">
    <label for="inputlg">大型输入</label>
    <input class="form-control input-lg" id="inputlg" type="text">
  </div>
</form>
自己尝试 »

您可以在水平表单中快速调整标签和表单控件的大小,方法是在 <div class="form-group"> 元素中添加 .form-group-*

示例

<div class="form-group form-group-lg">
自己尝试 »

您也可以使用 .input-group-sm.input-group-lg 类快速调整 .input-group 内所有输入和其他元素的大小。

示例

<div class="input-group input-group-lg">
自己尝试 »


列大小

以下示例显示了使用不同 .col-xs-* 类设置不同宽度的输入元素

示例

<div class="form-group row">
  <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>
</div>
自己尝试 »

帮助文本

使用 .help-block 类在表单中添加块级帮助文本。

示例

<div class="form-group">
  <label for="pwd">密码:</label>
  <input type="password" class="form-control" id="pwd" placeholder="输入密码">
  <span class="help-block">这是一些帮助文本...</span>
</div>
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.