回答編集履歴
2
追記
answer
CHANGED
@@ -20,4 +20,5 @@
|
|
20
20
|
-webkit-appearance: none;
|
21
21
|
border-radius: 0;
|
22
22
|
}
|
23
|
-
```
|
23
|
+
```
|
24
|
+
検索ワード「[スマホ input css](https://www.google.com/search?q=スマホ+input+css)」
|
1
追記
answer
CHANGED
@@ -9,4 +9,15 @@
|
|
9
9
|
border: 0;
|
10
10
|
font-size: 18px
|
11
11
|
}
|
12
|
+
```
|
13
|
+
|
14
|
+
追記(20180817)
|
15
|
+
ぐぐりました:
|
16
|
+
- [iPhoneなどでinput要素のボタンにCSSが効かない時の対処方法。](https://applian.jp/ios-input-invalid-css)
|
17
|
+
- [【フォーム】iOSのボタンが角丸グラデーションになるのをリセット](https://www.webdlab.com/labs/ios-button/)
|
18
|
+
```css
|
19
|
+
input[type="submit"] {
|
20
|
+
-webkit-appearance: none;
|
21
|
+
border-radius: 0;
|
22
|
+
}
|
12
23
|
```
|