この間隔の問題は私を夢中にさせていました。最終的に、フォーム要素間にスペースを入れるには、以下に示すように HTML コードをフォーマットする必要があることがわかりました。
誰かがここで何が起こっているのか説明できますか? これは改行の問題ですか?
ノート:
- Bootstrap 3 CSS ファイルを使用していますが、他のスタイルは設定されていません
- 以下の 2 つのサンプルの唯一の違いは、
.form-group
div のレイアウト方法です。
1. スペースを含むフォーム要素:
<!DOCTYPE html>
<html>
<head>
<title>Elements with spaces</title>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<form class="form-inline" role="form">
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter email">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="Password">
</div>
<button type="submit" class="btn btn-default">Sign in</button>
</form>
</body>
</html>
2. スペースのないフォーム要素:
<!DOCTYPE html>
<html>
<head>
<title>Elements with spaces</title>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<form class="form-inline" role="form">
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter email">
</div><div class="form-group">
<input type="password" class="form-control" placeholder="Password">
</div><button type="submit" class="btn btn-default">Sign in</button>
</form>
</body>
</html>