回答編集履歴

2

追記

2018/08/17 04:51

投稿

liveasnotes
liveasnotes

スコア1284

test CHANGED
@@ -43,3 +43,5 @@
43
43
  }
44
44
 
45
45
  ```
46
+
47
+ 検索ワード「[スマホ input css](https://www.google.com/search?q=スマホ+input+css)」

1

追記

2018/08/17 04:51

投稿

liveasnotes
liveasnotes

スコア1284

test CHANGED
@@ -21,3 +21,25 @@
21
21
  }
22
22
 
23
23
  ```
24
+
25
+
26
+
27
+ 追記(20180817)
28
+
29
+ ぐぐりました:
30
+
31
+ - [iPhoneなどでinput要素のボタンにCSSが効かない時の対処方法。](https://applian.jp/ios-input-invalid-css)
32
+
33
+ - [【フォーム】iOSのボタンが角丸グラデーションになるのをリセット](https://www.webdlab.com/labs/ios-button/)
34
+
35
+ ```css
36
+
37
+ input[type="submit"] {
38
+
39
+ -webkit-appearance: none;
40
+
41
+ border-radius: 0;
42
+
43
+ }
44
+
45
+ ```