回答編集履歴
1
修正
test
CHANGED
@@ -15,3 +15,63 @@
|
|
15
15
|
}
|
16
16
|
|
17
17
|
```
|
18
|
+
|
19
|
+
---
|
20
|
+
|
21
|
+
↓追加しました。普段使い回しているソースをそのまま持ってきたので、古いかもしれませんが試してみてほしいです。
|
22
|
+
|
23
|
+
```CSS
|
24
|
+
|
25
|
+
select,
|
26
|
+
|
27
|
+
option,
|
28
|
+
|
29
|
+
textarea,
|
30
|
+
|
31
|
+
input[type="text"],
|
32
|
+
|
33
|
+
input[type="tel"],
|
34
|
+
|
35
|
+
input[type="email"],
|
36
|
+
|
37
|
+
input[type="url"],
|
38
|
+
|
39
|
+
input[type="number"],
|
40
|
+
|
41
|
+
input[type="password"],
|
42
|
+
|
43
|
+
input[type="search"],
|
44
|
+
|
45
|
+
input[type="file"],
|
46
|
+
|
47
|
+
input[type="date"],
|
48
|
+
|
49
|
+
input[type="submit"],
|
50
|
+
|
51
|
+
input[type="button"],
|
52
|
+
|
53
|
+
input[type="reset"],
|
54
|
+
|
55
|
+
button {
|
56
|
+
|
57
|
+
-webkit-appearance: none;
|
58
|
+
|
59
|
+
-moz-appearance: none;
|
60
|
+
|
61
|
+
-ms-appearance: none;
|
62
|
+
|
63
|
+
appearance: none;
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
input::-moz-focus-inner,
|
68
|
+
|
69
|
+
button::-moz-focus-inner {
|
70
|
+
|
71
|
+
border: 0;
|
72
|
+
|
73
|
+
padding: 0;
|
74
|
+
|
75
|
+
}
|
76
|
+
|
77
|
+
```
|