Bootstrap kann über einige einfache HTML-Tags und erweiterte Klassen verschiedene Formularstile erstellen.
Bootstrap bietet eine Vielzahl von Formularlayouts, am häufigsten wird jedoch das zentrierte Formular, auch horizontales Formular genannt, verwendet.
Horizontale Formulare unterscheiden sich von anderen Formularen nicht nur in der Anzahl der Tags, sondern auch in der Formulardarstellung. (Empfohlenes Lernen: Bootstrap-Video-Tutorial)
Wenn Sie ein horizontales Layoutformular erstellen müssen, befolgen Sie bitte die folgenden Schritte:
Klasse .form-horizontal zum übergeordneten
Fügen Sie die Beschriftungen und Steuerelemente in ein Fügen Sie der Bezeichnung die Klasse .control-label hinzu. Beispiel: Weitere technische Artikel zum Thema Bootstrap finden Sie in der Spalte Bootstrap-Tutorial, um mehr zu erfahren! Das obige ist der detaillierte Inhalt vonSo zentrieren Sie das Bootstrap-Formular. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bootstrap 实例 - 水平表单</title>
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="firstname" class="col-sm-2 control-label">名字</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="firstname"
placeholder="请输入名字">
</div>
</div>
<div class="form-group">
<label for="lastname" class="col-sm-2 control-label">姓</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="lastname"
placeholder="请输入姓">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> 请记住我
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">登录</button>
</div>
</div>
</form>
</body>
</html>