回答編集履歴

1

class追加、参考リンク追加

2020/06/27 15:46

投稿

hope_mucci
hope_mucci

スコア4447

test CHANGED
@@ -1,6 +1,6 @@
1
1
  `label`の中に`input`を内包してしまっているのが原因だと思われます。
2
2
 
3
-
3
+ あと、`input`に`form-control`クラスを付与しないとスタイリングされません。
4
4
 
5
5
  ```html
6
6
 
@@ -14,7 +14,7 @@
14
14
 
15
15
  </label>
16
16
 
17
- <input type="text" placeholder="タイトル" class="c-input-title">
17
+ <input type="text" placeholder="タイトル" class="c-input-title form-control">
18
18
 
19
19
  </div>
20
20
 
@@ -23,3 +23,5 @@
23
23
  </div>
24
24
 
25
25
  ```
26
+
27
+ [参考資料:bootstrapのチュートリアル](https://bootstrap.hana87.club/form.html)