回答編集履歴

1

追記

2018/08/11 14:56

投稿

退会済みユーザー
test CHANGED
@@ -3,3 +3,35 @@
3
3
 
4
4
 
5
5
  ![イメージ説明](64a4fdccd4b3ab49379a86d92b236cb2.png)
6
+
7
+
8
+
9
+ ---
10
+
11
+
12
+
13
+ ```html
14
+
15
+ <button type="submit" class="btn">検索</button>
16
+
17
+ ```
18
+
19
+
20
+
21
+ class に `btn` しかついてない。
22
+
23
+
24
+
25
+ リファレンスを見ればわかることだが、
26
+
27
+ [https://getbootstrap.com/docs/4.1/components/buttons/](https://getbootstrap.com/docs/4.1/components/buttons/)
28
+
29
+
30
+
31
+ ```html
32
+
33
+ <button type="submit" class="btn btn-primary">検索</button>
34
+
35
+ ```
36
+
37
+ このように使うことが書かれている。