回答編集履歴
2
修正
test
CHANGED
@@ -2,9 +2,11 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
input要素が横並びになるのは
|
5
|
+
input要素が横並びになるのは`col-md-5`や`col-sm-8`とは関係がありません。
|
6
6
|
|
7
|
+
<input>タグには、標準で`display: inline;`が指定されており、CSSを何も指定しなければ
|
8
|
+
|
7
|
-
|
9
|
+
横並びになります。(<span>や<a>などと同様)
|
8
10
|
|
9
11
|
|
10
12
|
|
1
Bootstrapの記述を追加
test
CHANGED
@@ -30,6 +30,46 @@
|
|
30
30
|
|
31
31
|
```
|
32
32
|
|
33
|
+
---
|
34
|
+
|
35
|
+
Bootstrapの書き方は、以下のような形です。
|
33
36
|
|
34
37
|
|
38
|
+
|
39
|
+
```HTML
|
40
|
+
|
41
|
+
<form>
|
42
|
+
|
43
|
+
<div class="form-group">
|
44
|
+
|
45
|
+
<input class="form-control" type="text" name="name" placeholder="Name">
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
<div class="form-group">
|
50
|
+
|
51
|
+
<input class="form-control" type="text" name="email" placeholder="Email">
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
55
|
+
<div class="form-group">
|
56
|
+
|
57
|
+
<input class="form-control" type="text" name="password" placeholder="Password">
|
58
|
+
|
59
|
+
</div>
|
60
|
+
|
61
|
+
<div class="form-group">
|
62
|
+
|
63
|
+
<input class="form-control" type="text" name="confirm_password" placeholder="ConfirmPassword">
|
64
|
+
|
65
|
+
</div>
|
66
|
+
|
67
|
+
</form>
|
68
|
+
|
69
|
+
```
|
70
|
+
|
71
|
+
|
72
|
+
|
35
|
-
|
73
|
+
参考: Forms · Bootstrap
|
74
|
+
|
75
|
+
[https://getbootstrap.com/docs/4.4/components/forms/](https://getbootstrap.com/docs/4.4/components/forms/)
|